Initial commit

This commit is contained in:
2026-02-15 02:53:57 +01:00
commit f3ba3cf1b1
66 changed files with 3016 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { useAuth } from "@/hooks/useAuth.js";
const IfNotAuthenticated = ({ children }) => {
const { authStatus } = useAuth();
return authStatus === "unauthenticated" ? children : null;
};
export default IfNotAuthenticated;