'use client'; import React, { MouseEvent } from 'react'; export default function Header() { const links = [ {"text": "Accueil" , "target": "/"}, {"text": "Travaux" , "target": "/#works"}, {"text": "À propos" , "target": "/#about"}, {"text": "Blog" , "target": "/blog"}, ]; const handleAnchorClick = (e: MouseEvent, target: string) => { if (target.startsWith("/#")) { // only anchor links e.preventDefault(); const id = target.slice(2); const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: "smooth" }); } } }; return (
M. Guilbert
logo mg dev
France
); }