import { getAllAnnonces } from "@/lib/services/annonceService"; import { CardAnnonce } from "@/lib/components/annonceComponent"; import Link from 'next/link'; export default function Home() { const annonces = getAllAnnonces(); return (

Liste des Annonces

Découvrez toutes les annonces disponibles.

{annonces.then((data) => data.map((annonce) => ( )) )}
); }