import { Navigate, Outlet } from "react-router-dom";
import Version from "@/components/Version";
import { getAuthStore } from "@/repository/admin";
const AuthLayout = () => {
const auth = getAuthStore();
if (auth.isValid && auth.isSuperuser) {
return