This commit is contained in:
2025-10-18 01:46:46 +03:00
commit 9baa68258e
74 changed files with 29125 additions and 0 deletions

22
pages/index.tsx Normal file
View File

@ -0,0 +1,22 @@
import { useEffect, useState } from 'react';
import { useRouter } from 'next/router';
import { Flex } from '@mantine/core';
import { AuthenticationForm } from '@/components/Forms/AuthenticationForm';
export default function HomePage() {
const router = useRouter();
// const [checking, setChecking] = useState(true);
// useEffect(() => {
// router.replace('/login').then(() => setChecking(false));
// }, [router]);
//
// if (checking) {
// return <p>Checking login status...</p>;
// }
return (
<>
</>
);
}