import { Outlet, Navigate } from 'react-router-dom'; import { useAuthStore } from '@/stores/auth'; import Sidebar from './Sidebar'; export default function AppShell() { const { user, loading } = useAuthStore(); if (loading) { return (