import { Navigate, Outlet, useLocation } from "react-router-dom"; import { useAuth } from "./use-auth"; export function RequireAuth() { const { isLoading, user } = useAuth(); const location = useLocation(); if (isLoading) { return