diff --git a/src/components/Header.jsx b/src/components/Header.jsx index 83cfc03..4e9ea83 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -1,6 +1,7 @@ 'use client' import Link from 'next/link' +import { usePathname } from 'next/navigation' import { Popover, PopoverButton, @@ -79,9 +80,12 @@ function MobileNavigation() { } export function Header() { + const pathname = usePathname() + const isHomepage = pathname === '/' + return ( -
-