"use client"; import Image from "next/image"; import header from "./Header.module.css"; import Link from "next/link"; import BarNavigation from "../BarNavigation/BarNavigation"; import { usePathname } from "next/navigation"; function Header() { const pathname = usePathname(); return (
Logo FES
{pathname !== "/" && }
); } export default Header; //IO