Files
HoyaHax2025/src/app/page.tsx
suraj.shenoy.b@gmail.com 89ce3f74e1 Update main page
2025-01-25 05:59:14 -06:00

14 lines
401 B
TypeScript

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>
)
}