import { useAuth } from "@/hooks/useAuth"; import { Navigate, Outlet } from "react-router-dom"; const AuthLayout = () => { const auth = useAuth(); if (auth.isLoading) { return null; } if (auth.isAuthenticated) { return ; } return (