'use client'; import * as React from 'react'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; export const Header: React.FC = () => { const pathname = usePathname(); const isActive = (path: string) => pathname === path; return (
M
Marc Mintel
); };