"use client"; import React from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; interface FooterProps { settings?: any; } const Footer = ({ settings }: FooterProps) => { const pathname = usePathname() || ''; if (pathname.startsWith('/dashboard')) return null; const siteInfo = settings || { siteName: "Afropreunariat", siteSlogan: "La plateforme de référence pour l'entrepreneuriat africain. Visibilité, connexion et croissance pour les TPE/PME.", contactEmail: "support@afropreunariat.com", contactPhone: "+225 00 00 00 00 00", address: "Abidjan, Côte d'Ivoire / Paris, France", footerText: "© 2025 Afropreunariat. Tous droits réservés." }; return ( ); }; export default Footer;