diff --git a/frontend/src/data/conversionPages.js b/frontend/src/data/conversionPages.js index 4a1bc6b..159bea4 100644 --- a/frontend/src/data/conversionPages.js +++ b/frontend/src/data/conversionPages.js @@ -403,4 +403,221 @@ export const conversionPages = [ }, }, }, + { + pairId: 'docx-to-pdf', + sourceFormat: 'docx', + targetFormat: 'pdf', + family: 'document', + slugs: { fr: 'convertir-word-en-pdf', en: 'convert-word-to-pdf' }, + content: { + fr: { + title: 'Convertir Word (DOCX) en PDF en ligne', + description: 'Transformez votre document Word en PDF, prêt à envoyer sans risque de mise en page cassée.', + intro: + 'Envoyer un .docx expose votre mise en page aux variations de logiciel du destinataire. Le PDF fige la mise en forme et se lit à l’identique sur tous les appareils.', + benefits: [ + 'Mise en page figée, identique quel que soit le lecteur', + 'Format standard pour les candidatures, contrats et rapports', + 'Empêche la modification accidentelle du contenu', + ], + }, + en: { + title: 'Convert Word (DOCX) to PDF Online', + description: 'Turn your Word document into a PDF, ready to send without risking broken formatting.', + intro: + 'Sending a .docx exposes your layout to the recipient’s software quirks. PDF locks in the formatting and reads identically on every device.', + benefits: [ + 'Formatting locked in, identical on every viewer', + 'The standard format for applications, contracts, and reports', + 'Prevents accidental edits to the content', + ], + }, + }, + }, + { + pairId: 'pdf-to-txt', + sourceFormat: 'pdf', + targetFormat: 'txt', + family: 'document', + slugs: { fr: 'convertir-pdf-en-texte', en: 'convert-pdf-to-text' }, + content: { + fr: { + title: 'Convertir PDF en texte (TXT) en ligne', + description: 'Extrayez le texte brut d’un PDF pour le réutiliser dans un autre document ou script.', + intro: + 'Besoin de récupérer uniquement le contenu textuel d’un PDF, sans mise en forme, pour l’analyser, le copier dans un script ou l’indexer ? Cette conversion extrait le texte brut du document.', + benefits: [ + 'Texte brut, sans mise en forme parasite', + 'Pratique pour l’analyse de données ou l’indexation', + 'Fonctionne même sur des PDF multi-pages', + ], + }, + en: { + title: 'Convert PDF to Text (TXT) Online', + description: 'Extract the raw text from a PDF to reuse it in another document or script.', + intro: + 'Need to pull just the text content out of a PDF, with no formatting, to analyze, script against, or index it? This conversion extracts the document’s raw text.', + benefits: [ + 'Plain text, free of formatting clutter', + 'Handy for data analysis or indexing', + 'Works even on multi-page PDFs', + ], + }, + }, + }, + { + pairId: 'pdf-to-html', + sourceFormat: 'pdf', + targetFormat: 'html', + family: 'document', + slugs: { fr: 'convertir-pdf-en-html', en: 'convert-pdf-to-html' }, + content: { + fr: { + title: 'Convertir PDF en HTML en ligne', + description: 'Transformez un PDF en page HTML pour le publier ou l’intégrer sur un site web.', + intro: + 'Publier le contenu d’un PDF directement sur une page web, plutôt que de forcer un téléchargement, améliore l’expérience utilisateur et le référencement du contenu. Cette conversion produit un fichier HTML à partir du PDF.', + benefits: [ + 'Contenu directement indexable par les moteurs de recherche', + 'Évite de forcer un téléchargement pour consulter le contenu', + 'Structure HTML réutilisable dans un site existant', + ], + }, + en: { + title: 'Convert PDF to HTML Online', + description: 'Turn a PDF into an HTML page to publish or embed on a website.', + intro: + 'Publishing a PDF’s content directly on a web page, instead of forcing a download, improves user experience and the content’s search visibility. This conversion produces an HTML file from the PDF.', + benefits: [ + 'Content directly indexable by search engines', + 'Avoids forcing a download just to view the content', + 'HTML structure reusable within an existing site', + ], + }, + }, + }, + { + pairId: 'csv-to-xlsx', + sourceFormat: 'csv', + targetFormat: 'xlsx', + family: 'document', + slugs: { fr: 'convertir-csv-en-excel', en: 'convert-csv-to-excel' }, + content: { + fr: { + title: 'Convertir CSV en Excel (XLSX) en ligne', + description: 'Transformez un fichier CSV en classeur Excel, avec colonnes et feuilles prêtes à l’emploi.', + intro: + 'Un CSV n’a ni mise en forme ni formules. Le convertir en XLSX permet de l’ouvrir directement dans Excel avec des colonnes correctement dimensionnées, prêt pour vos calculs et graphiques.', + benefits: [ + 'Ouverture directe dans Excel, Google Sheets ou LibreOffice', + 'Base prête pour ajouter formules, filtres et graphiques', + 'Conserve l’intégralité des lignes et colonnes du CSV source', + ], + }, + en: { + title: 'Convert CSV to Excel (XLSX) Online', + description: 'Turn a CSV file into an Excel workbook, with columns and sheets ready to use.', + intro: + 'A CSV has no formatting or formulas. Converting it to XLSX lets you open it directly in Excel with properly sized columns, ready for your calculations and charts.', + benefits: [ + 'Opens directly in Excel, Google Sheets, or LibreOffice', + 'A ready base for adding formulas, filters, and charts', + 'Preserves every row and column from the source CSV', + ], + }, + }, + }, + { + pairId: 'xlsx-to-csv', + sourceFormat: 'xlsx', + targetFormat: 'csv', + family: 'document', + slugs: { fr: 'convertir-excel-en-csv', en: 'convert-excel-to-csv' }, + content: { + fr: { + title: 'Convertir Excel (XLSX) en CSV en ligne', + description: 'Exportez votre classeur Excel en CSV, un format universel pour l’import dans d’autres outils.', + intro: + 'De nombreux outils (bases de données, scripts, imports en masse) n’acceptent que le CSV, pas le format XLSX propriétaire d’Excel. Cette conversion extrait les données brutes de la première feuille en CSV.', + benefits: [ + 'Format universellement accepté en import par la plupart des logiciels', + 'Fichier plus léger et plus simple qu’un classeur Excel', + 'Idéal avant import dans une base de données ou un script', + ], + }, + en: { + title: 'Convert Excel (XLSX) to CSV Online', + description: 'Export your Excel workbook to CSV, a universal format for importing into other tools.', + intro: + 'Many tools (databases, scripts, bulk imports) only accept CSV, not Excel’s proprietary XLSX format. This conversion extracts the raw data from the first sheet as CSV.', + benefits: [ + 'A format universally accepted for import by most software', + 'A lighter, simpler file than an Excel workbook', + 'Ideal before importing into a database or script', + ], + }, + }, + }, + { + pairId: 'csv-to-pdf', + sourceFormat: 'csv', + targetFormat: 'pdf', + family: 'document', + slugs: { fr: 'convertir-csv-en-pdf', en: 'convert-csv-to-pdf' }, + content: { + fr: { + title: 'Convertir CSV en PDF en ligne', + description: 'Transformez un fichier CSV en tableau PDF lisible et imprimable.', + intro: + 'Un CSV brut n’est pas fait pour être lu tel quel ou imprimé. Cette conversion met en forme les données en un tableau PDF propre, prêt à être partagé ou archivé.', + benefits: [ + 'Tableau lisible et mis en forme, contrairement au CSV brut', + 'Prêt à imprimer ou archiver tel quel', + 'Pratique pour partager des données sans donner accès au fichier source', + ], + }, + en: { + title: 'Convert CSV to PDF Online', + description: 'Turn a CSV file into a readable, printable PDF table.', + intro: + 'A raw CSV isn’t meant to be read as-is or printed. This conversion formats the data into a clean PDF table, ready to share or archive.', + benefits: [ + 'A readable, formatted table, unlike raw CSV', + 'Ready to print or archive as-is', + 'Handy for sharing data without giving access to the source file', + ], + }, + }, + }, + { + pairId: 'xlsx-to-pdf', + sourceFormat: 'xlsx', + targetFormat: 'pdf', + family: 'document', + slugs: { fr: 'convertir-excel-en-pdf', en: 'convert-excel-to-pdf' }, + content: { + fr: { + title: 'Convertir Excel (XLSX) en PDF en ligne', + description: 'Transformez votre classeur Excel en PDF, figé et prêt à partager sans risque de modification.', + intro: + 'Partager un fichier Excel expose vos formules et données brutes à la modification. Le PDF fige le contenu affiché, parfait pour un rapport ou un devis final.', + benefits: [ + 'Contenu figé, sans formules ni données modifiables', + 'Mise en page identique quel que soit l’appareil du destinataire', + 'Format standard pour les rapports et devis finaux', + ], + }, + en: { + title: 'Convert Excel (XLSX) to PDF Online', + description: 'Turn your Excel workbook into a PDF, locked and ready to share without risk of edits.', + intro: + 'Sharing an Excel file exposes your formulas and raw data to changes. PDF locks in the displayed content, perfect for a final report or quote.', + benefits: [ + 'Locked content, no editable formulas or data', + 'Identical layout regardless of the recipient’s device', + 'The standard format for final reports and quotes', + ], + }, + }, + }, ];