feat: init Better Auth and DB

This commit is contained in:
2026-05-21 04:26:28 +07:00
parent 99d1c97706
commit eed376cf5b
10 changed files with 5963 additions and 11 deletions
+7 -1
View File
@@ -1,3 +1,9 @@
import { Button } from "./ui/button";
export default function Home() {
return <main>Hello World</main>;
return (
<main className="h-screen w-full flex items-center justify-center">
<Button>Hello World</Button>
</main>
);
}