import { Navigate, Outlet } from 'react-router-dom' import { useAuthStore } from '../stores/auth.ts' export function ProtectedRoute() { const isAuthenticated = useAuthStore((s) => s.isAuthenticated) if (!isAuthenticated) { return } return }