"use client"; import GlowButton from "@/component/ui/GlowButton"; import { motion, useInView } from "framer-motion"; import { useRef } from "react"; export default function Hero() { const ref = useRef(null); const isInView = useInView(ref, { amount: 0.3 }); return (
{/* Grid Background animée */} {/* Content */} Bonjour👋, je suis{" "} Jessy Développeur Full Stack | Créateur d'expériences web Voir mes projets Me contacter C'est une bonne situation ça, développeur Full Stack ?
); }