feat(frontend): add reassurance strip and supported-formats section

Part of the Ombrora Convert redesign (Task 3/5).
This commit is contained in:
2026-07-31 14:57:46 +02:00
parent bc7a3b0691
commit 2aa8e51b80
5 changed files with 170 additions and 34 deletions
+18
View File
@@ -0,0 +1,18 @@
export const FORMAT_FAMILIES = [
{
key: 'images',
formats: ['jpg', 'jpeg', 'png', 'webp', 'gif', 'tiff', 'avif', 'heic', 'heif', 'ico'],
},
{
key: 'documents',
formats: ['docx', 'txt', 'html', 'md', 'pdf', 'csv', 'xlsx'],
},
{
key: 'fonts',
formats: ['ttf', 'otf', 'woff', 'dfont'],
},
{
key: 'ebooks',
formats: ['epub', 'fb2', 'lrf', 'mobi', 'pdb', 'rb', 'snb', 'tcr', 'azw3', 'pdf'],
},
];