import { ComponentProps } from "react"; import headerImg from "@/assets/images/header-img.gif"; import titleImg from "@/assets/images/title-img.svg"; import ahogeImg from "@/assets/images/furina-ahoge.svg"; import { Link, useLocation } from "react-router-dom"; import { cn } from "@/utility/utils"; const AppBar = () => { return (
Furina gif by u/Quit-Creative Furina
); }; const Navbar = ({ children }: ComponentProps<"div">) => { return ( ); }; type NavbarItemProps = { path: string; title: string; isExact?: boolean; }; const NavbarItem = ({ path, title, isExact = true }: NavbarItemProps) => { const { pathname } = useLocation(); const isActive = isExact ? pathname === path : pathname.startsWith(path); return ( ahoge

{title}

); }; export default AppBar;