feat(seo): add conversion-page scaffolding with 2 seed pairs (jpg-to-png, pdf-to-docx)
This commit is contained in:
@@ -1 +1,65 @@
|
||||
export const conversionPages = [];
|
||||
export const conversionPages = [
|
||||
{
|
||||
pairId: 'jpg-to-png',
|
||||
sourceFormat: 'jpg',
|
||||
targetFormat: 'png',
|
||||
family: 'image',
|
||||
slugs: { fr: 'convertir-jpg-en-png', en: 'convert-jpg-to-png' },
|
||||
content: {
|
||||
fr: {
|
||||
title: 'Convertir JPG en PNG en ligne',
|
||||
description:
|
||||
'Convertissez vos JPG en PNG gratuitement, sans perte de qualité et avec support de la transparence.',
|
||||
intro:
|
||||
"Le format PNG conserve une compression sans perte et prend en charge la transparence, contrairement au JPG qui compresse avec perte. Idéal pour les logos, captures d'écran et visuels nécessitant un fond transparent.",
|
||||
benefits: [
|
||||
'Compression sans perte, aucune dégradation visuelle',
|
||||
'Support natif de la transparence (canal alpha)',
|
||||
'Traitement local, fichiers supprimés automatiquement après conversion',
|
||||
],
|
||||
},
|
||||
en: {
|
||||
title: 'Convert JPG to PNG Online',
|
||||
description: 'Convert JPG to PNG for free, with lossless quality and transparency support.',
|
||||
intro:
|
||||
"PNG uses lossless compression and supports transparency, unlike JPG's lossy compression. Ideal for logos, screenshots, and visuals that need a transparent background.",
|
||||
benefits: [
|
||||
'Lossless compression, no visual degradation',
|
||||
'Native transparency support (alpha channel)',
|
||||
'Files processed and deleted automatically, no account needed',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
pairId: 'pdf-to-docx',
|
||||
sourceFormat: 'pdf',
|
||||
targetFormat: 'docx',
|
||||
family: 'document',
|
||||
slugs: { fr: 'convertir-pdf-en-word', en: 'convert-pdf-to-word' },
|
||||
content: {
|
||||
fr: {
|
||||
title: 'Convertir PDF en Word (DOCX) en ligne',
|
||||
description: 'Transformez un PDF en document Word modifiable, avec mise en page conservée.',
|
||||
intro:
|
||||
'Recevoir un contrat ou un rapport en PDF alors qu’il faut le modifier est une situation courante. Cette conversion reconstruit un document Word (.docx) éditable à partir du contenu du PDF.',
|
||||
benefits: [
|
||||
'Texte réellement modifiable, pas une image scannée',
|
||||
'Mise en page approximativement conservée',
|
||||
'Évite de ressaisir un document entier à la main',
|
||||
],
|
||||
},
|
||||
en: {
|
||||
title: 'Convert PDF to Word (DOCX) Online',
|
||||
description: 'Turn a PDF into an editable Word document, with the layout preserved.',
|
||||
intro:
|
||||
'Receiving a contract or report as a PDF when you need to edit it is a common situation. This conversion rebuilds an editable Word (.docx) document from the PDF’s content.',
|
||||
benefits: [
|
||||
'Genuinely editable text, not a scanned image',
|
||||
'Layout approximately preserved',
|
||||
'Avoids retyping an entire document by hand',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user