import { ArrowArcLeftIcon } from "@phosphor-icons/react"; import { useNavigate } from "react-router-dom"; import { ROUTES } from "../../config/routes"; export const Navbar = ({ child }: { child?: React.ReactNode }) => { const navigate = useNavigate(); return ( ); };