import { CloseOutlined, MenuOutlined } from "@ant-design/icons"; import { Button } from "@imphnen-frontend-service/ui/atoms"; import { cn, For, Show } from "@imphnen-frontend-service/utils"; import { FC, useState } from "react"; import { Link, useLocation } from "react-router-dom"; const MENUS: { label: string; href: string }[] = [ { label: "Home", href: "/" }, { label: 'Mentoring', href: '/mentoring' }, { label: 'Resources', href: '/resources' }, { label: 'Articles', href: '/articles' }, ] export const Header: FC = () => { const location = useLocation(); const [expandMenu, setExpandMenu] = useState(false); return (
IMPHNEN Logo
); }