Initial commit

This commit is contained in:
Aj - Thomas
2022-04-24 22:36:47 +02:00
commit c2c4f3a9d1
23 changed files with 12140 additions and 0 deletions

11
pages/index.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Welcome } from '../components/Welcome/Welcome';
import { ColorSchemeToggle } from '../components/ColorSchemeToggle/ColorSchemeToggle';
export default function HomePage() {
return (
<>
<Welcome />
<ColorSchemeToggle />
</>
);
}