Update main page

This commit is contained in:
suraj.shenoy.b@gmail.com
2025-01-25 05:59:14 -06:00
parent 736a0f01e2
commit 89ce3f74e1
4 changed files with 55 additions and 0 deletions

13
src/app/page.tsx Normal file
View File

@@ -0,0 +1,13 @@
import RootLayout from './layout'
import SignupPage from './signup/page'
export default function Home() {
return (
<RootLayout>
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', height: '100vh' }}>
<h1 style={{ fontSize: 64, marginBottom: 20 }}>Welcome to Hoya</h1>
<SignupPage />
</div>
</RootLayout>
)
}