"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(); const rutasConBar = ["/Escaner", "/AgregarEquipo"]; return (
Logo FES
{rutasConBar.includes(pathname) && }
); } export default Header; //IO