import { Link, Outlet } from "tempest-react-sdk";
import { useAuth } from "@/stores/auth";
/** App shell: nav bar + routed content via ``. */
export function RootLayout() {
const isAuthenticated = useAuth.use.isAuthenticated();
const logout = useAuth.use.logout();
return (
Tempest App
);
}