Add welcome component and update home route title

This commit is contained in:
2025-03-10 12:24:44 +01:00
parent 23730b81db
commit 84b776c9d1
6 changed files with 10 additions and 137 deletions

8
app/index.tsx Normal file
View File

@@ -0,0 +1,8 @@
export function Welcome() {
return (
<div>
<h1 className="text-3xl text-center">Welcome to Aindustries' casino</h1>
<p className="text-center">Mind that gambling isn't that dangerous</p>
</div>
);
}