Files
matheoguilbert.fr/components/sections/FeatureSection.tsx
T
mguilbert 87efea3cc1 redesign(homepage): elegant editorial redesign with scroll animations
- HeroSection: full-viewport split layout with staggered entrance animations,
  editorial typography, tech stack tags, animated scroll indicator
- WorksSection: refined header with section label, scroll-reveal on entry
- ProjectCard: per-card IntersectionObserver reveal, numbered projects,
  enhanced hover states (scale + brightness), improved CTA
- FeatureSection: card grid with border/glass treatment and staggered reveals
- AboutSection: animated timeline progress line, scroll-triggered card entrances
- FeatureColumn: icon container with hover treatment
- globals.css: fadeUp/lineGrow/arrowBounce keyframes, .reveal utility,
  prefers-reduced-motion support, brand-accent color token
- lib/useReveal.ts: IntersectionObserver hook for scroll reveals

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-17 08:39:54 +02:00

82 lines
3.4 KiB
TypeScript

'use client';
import { useRef, useEffect } from 'react';
import { FeatureColumn } from '@/components/ui/FeatureColumn';
const features = [
{
imagePath: '/icons/brain.svg',
title: 'Plus qu\'un simple exécutant',
text: 'Grâce à mon background en conception numérique et mobile, je ne me contente pas de coder. J\'apporte un regard critique et constructif sur l\'ensemble de votre projet.',
},
{
imagePath: '/icons/building.svg',
title: 'Des fondations en béton',
text: 'Ma spécialité : l\'architecture. Je construis des solutions pérennes, évolutives et capables d\'absorber la croissance de votre produit dans le temps.',
},
{
imagePath: '/icons/people.svg',
title: 'L\'utilisateur au centre',
text: 'Le code parfait n\'est rien si le produit ne répond pas à un besoin. Je place l\'expérience utilisateur et la fonctionnalité au cœur de mes développements.',
},
];
export default function FeatureSection() {
const sectionRef = useRef<HTMLElement>(null);
useEffect(() => {
const section = sectionRef.current;
if (!section) return;
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting) {
entry.target.querySelectorAll('.reveal').forEach((el) => {
el.classList.add('visible');
});
observer.unobserve(entry.target);
}
});
},
{ threshold: 0.15 }
);
observer.observe(section);
return () => observer.disconnect();
}, []);
return (
<section ref={sectionRef} className="w-full py-24 md:py-36">
{/* Section label */}
<div className="reveal flex items-center gap-3 mb-12 md:mb-16">
<span className="w-8 h-px bg-brand-brown/40" />
<span className="font-sans text-[11px] uppercase tracking-[0.2em] text-brand-brown/45">Approche</span>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-12 md:gap-6 lg:gap-16">
{features.map((feature, i) => (
<div
key={i}
className="reveal group flex flex-col items-center p-8 rounded-2xl border border-brand-brown/8 bg-white/40 hover:bg-white/70 hover:border-brand-brown/15 transition-all duration-300 cursor-default"
style={{ transitionDelay: `${i * 120}ms` }}
>
{/* Icon container */}
<div className="w-20 h-20 rounded-2xl bg-brand-brown/5 flex items-center justify-center mb-6 group-hover:bg-brand-brown/8 transition-colors duration-300">
<img className="w-10 h-10" src={feature.imagePath} alt="" aria-hidden="true" />
</div>
<div className="font-serif text-brand-brown text-center leading-[1.1] text-[clamp(1.4rem,2.2vw,1.65rem)] mb-4">
{feature.title}
</div>
<div className="font-sans text-sm text-center text-brand-brown/60 leading-relaxed">
{feature.text}
</div>
</div>
))}
</div>
</section>
);
}