api-docs / app /page.tsx
Hanzo Dev
Create minimal working template
ebcd728
raw
history blame contribute delete
543 Bytes
export default function HomePage() {
return (
<div style={{
minHeight: '100vh',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
fontFamily: 'system-ui, -apple-system, sans-serif'
}}>
<div style={{ textAlign: 'center' }}>
<h1 style={{ fontSize: '3rem', fontWeight: 'bold', marginBottom: '1rem' }}>
API Docs
</h1>
<p style={{ fontSize: '1.25rem', color: '#666' }}>
Document your APIs with style
</p>
</div>
</div>
)
}