This commit is contained in:
skidoodle 2023-04-09 05:31:08 +02:00
commit 9cf213d556
29 changed files with 3825 additions and 0 deletions

9
src/pages/index.tsx Normal file
View file

@ -0,0 +1,9 @@
import { MainLayout } from '@/components/MainLayout';
export default function Home() {
return (
<>
<MainLayout />
</>
);
}