import React from 'react'; import { getLegalDocument } from '@/lib/legal'; export const metadata = { title: 'Conditions Générales d\'Utilisation - Afrohub', description: 'Consultez les conditions générales d\'utilisation de la plateforme Afrohub.', }; export default async function CGUPage() { const doc = await getLegalDocument('CGU'); if (!doc) { return (

Document non disponible.

); } return (

{doc.title}

Dernière mise à jour : {new Date(doc.updatedAt).toLocaleDateString('fr-FR', { day: 'numeric', month: 'long', year: 'numeric' })}
); }