"use client"; import { motion } from "framer-motion"; import Image from "next/image"; const ADS_COPY: Record = { "riseofkinkdom.jpeg": { title: "Atteignez 50 Millions d’Impuissance !", subtitle: "Rejoignez « Rise of Kink Doms » et dominez vos adversaires.", }, "voat.png": { title: "Aymeric Pierre vend votre voiture !", subtitle: "Offre exclusive : 69,42 BTC, garantie World PvP Champion.", }, }; export default function AdsGalleryClient({ files }: { files: string[] }) { return (
Galerie des publicités {files.length === 0 ? ( Aucune bannière trouvée dans{" "} /public/ads. ) : ( {files.map((file) => { const copy = ADS_COPY[file]; return (
{file}
{copy && (

{copy.title.split(/(50 Millions)/).map((part, i) => part === "50 Millions" ? ( {part} ) : ( part ) )}

{copy.subtitle}

)}

{file}

); })}
)}
); }