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