Initial commit

This commit is contained in:
bipproduction
2025-10-06 19:31:31 +08:00
commit 35caccdd44
18 changed files with 643 additions and 0 deletions

9
src/pages/Home.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function Home() {
return (
<div>
<h1>Home</h1>
</div>
);
}

9
src/pages/NotFound.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function NotFound() {
return (
<div>
<h1>404 Not Found</h1>
</div>
);
}