import { SITE_NAME } from "@/lib/constants"; import { FaFacebook, FaYoutube } from "react-icons/fa"; import Logo from "./logo"; const sections = [ { title: "Resources", links: [ { name: "Accueil", href: "/" }, { name: "Planning", href: "/planning" }, { name: "À propos", href: "/about" }, { name: "Galerie", href: "/gallery" }, { name: "Blog", href: "/blogs" }, { name: "Contact", href: "/contact" }, ], }, ]; const Footer = () => { return (
); }; export default Footer;