43 lines
1.7 KiB
TypeScript
43 lines
1.7 KiB
TypeScript
|
|
import React from 'react';
|
|
import { Link, useLocation } from 'react-router-dom';
|
|
|
|
const Footer = () => {
|
|
const location = useLocation();
|
|
if (location.pathname.startsWith('/dashboard')) return null;
|
|
|
|
return (
|
|
<footer className="bg-dark-900 text-white">
|
|
<div className="max-w-7xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8">
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
<div>
|
|
<h3 className="text-2xl font-serif font-bold text-brand-500 mb-4">Afropreunariat</h3>
|
|
<p className="text-gray-400 text-sm">
|
|
La plateforme de référence pour l'entrepreneuriat africain.
|
|
Visibilité, connexion et croissance pour les TPE/PME.
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-bold text-lg mb-4">Liens Rapides</h4>
|
|
<ul className="space-y-2 text-gray-400 text-sm">
|
|
<li><Link to="/directory" className="hover:text-brand-500">Rechercher une entreprise</Link></li>
|
|
<li><Link to="/login" className="hover:text-brand-500">Inscrire mon entreprise</Link></li>
|
|
<li><Link to="/blog" className="hover:text-brand-500">Actualités & Conseils</Link></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-bold text-lg mb-4">Contact</h4>
|
|
<p className="text-gray-400 text-sm mb-2">Abidjan, Côte d'Ivoire / Paris, France</p>
|
|
<p className="text-gray-400 text-sm">support@afropreunariat.com</p>
|
|
</div>
|
|
</div>
|
|
<div className="mt-8 pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
|
|
© 2025 Afropreunariat. Tous droits réservés.
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|