import { Navigate, Outlet } from "react-router-dom" import { useAuthStore } from "@/store/auth" import Sidebar from "./Sidebar" export default function AppLayout() { const { isAuthenticated } = useAuthStore() if (!isAuthenticated()) return return (