- Add animated hero section with parallax rocket SVG that descends on scroll - Add floating decorative particles and gradient layers in hero - Add staggered text reveal animation on hero h1 - Create ScrollReveal component (IntersectionObserver-based fade/slide) - Create AnimatedCounter component for stat numbers - Add scroll animations to all sections (Problematique, System, Demos, AboutMe, FAQ, Contact, Footer) - Add smooth FAQ accordion transitions - Add extensive CSS keyframe animations (float, flame, particles, stat glow) https://claude.ai/code/session_01V8YAjpqRQ3bfBYsABYsEgo
80 lines
3.1 KiB
TypeScript
80 lines
3.1 KiB
TypeScript
"use client";
|
|
|
|
import Link from "next/link";
|
|
import ScrollReveal from "@/components/animations/ScrollReveal";
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="border-t border-border py-10 md:py-12 bg-bg-white">
|
|
<div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<ScrollReveal direction="up">
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
{/* Brand */}
|
|
<div>
|
|
<Link href="/" className="flex items-center gap-2 mb-3" aria-label="HookLab - Accueil">
|
|
<div className="w-8 h-8 bg-navy rounded-lg flex items-center justify-center">
|
|
<span className="text-white font-bold text-sm">H</span>
|
|
</div>
|
|
<span className="text-lg font-bold text-navy">
|
|
Hook<span className="text-orange">Lab</span>
|
|
</span>
|
|
</Link>
|
|
<p className="text-text-light text-sm leading-relaxed max-w-xs">
|
|
Création de sites pour le Bâtiment et l’Artisanat.
|
|
</p>
|
|
<p className="text-text-muted text-xs mt-3">
|
|
59148 Flines-lez-Raches
|
|
</p>
|
|
</div>
|
|
|
|
{/* Expertises SEO */}
|
|
<div>
|
|
<h4 className="text-navy font-semibold text-sm mb-4">
|
|
Expertises
|
|
</h4>
|
|
<ul className="space-y-2 text-text-light text-sm">
|
|
<li>Site internet Couvreur</li>
|
|
<li>SEO Maçonnerie</li>
|
|
<li>Webmaster Paysagiste</li>
|
|
<li>Visibilité Menuisier</li>
|
|
</ul>
|
|
</div>
|
|
|
|
{/* Legal */}
|
|
<div>
|
|
<h4 className="text-navy font-semibold text-sm mb-4">Légal</h4>
|
|
<ul className="space-y-2">
|
|
<li>
|
|
<Link href="/mentions-legales" className="text-text-light hover:text-navy text-sm transition-colors">
|
|
Mentions légales
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/confidentialite" className="text-text-light hover:text-navy text-sm transition-colors">
|
|
Politique de Confidentialité
|
|
</Link>
|
|
</li>
|
|
<li>
|
|
<Link href="/plan-du-site" className="text-text-light hover:text-navy text-sm transition-colors">
|
|
Plan du site
|
|
</Link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</ScrollReveal>
|
|
|
|
{/* Bottom SEO */}
|
|
<div className="border-t border-border mt-8 pt-6 flex flex-col md:flex-row items-center justify-between gap-3">
|
|
<p className="text-text-muted text-xs">
|
|
© {new Date().getFullYear()} HookLab — Enguerrand Ozano · SIREN 994 538 932
|
|
</p>
|
|
<p className="text-text-muted text-xs text-center md:text-right">
|
|
Intervention : Douai · Orchies · Arleux · Valenciennes · Saint-Amand-les-Eaux
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|