import { type Dictionary, t } from 'intlayer';
import type { Metadata } from 'next';
const metadataContent = {
key: 'metadata',
content: {
title: t({
en: 'Create Next App',
fr: 'Créer une application Next.js',
es: 'Crear una aplicación Next.js',
}),
description: t({
en: 'Generated by create next app',
fr: 'Généré par create next app',
es: 'Generado por create next app',
}),
keywords: t({
en: ['innovation', 'productivity', 'workflow', 'SaaS'],
fr: ['innovation', 'productivité', 'flux de travail', 'SaaS'],
es: ['innovación', 'productividad', 'flujo de trabajo', 'SaaS'],
}),
},
} satisfies Dictionary<Metadata>;
export default metadataContent;