Spaces:
Runtime error
Runtime error
| 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> | |
| ) | |
| } | |