registry:block
Blank App
v0.1.0beta
Minimal blank app scaffold with Aavya theme baseline.
Registry Endpoint
Open JSONhttps://registry.aavya.com/r/blank-app.json
npx shadcn@latest add https://registry.aavya.com/r/blank-app.json
Live Preview
Blank App
Start building with Aavya tokens and registry components.
Usage Snippet
import Page from '@/registry/blocks/blank-app/page.tsx'
export default function Example() {
return (
<div className="p-6">
<Page />
</div>
)
}
Source Preview
export default function BlankAppPage() {
return (
<main style={{ padding: '2rem' }}>
<h1 style={{ fontSize: '1.75rem', marginBottom: '0.75rem' }}>Blank App</h1>
<p style={{ opacity: 0.8 }}>
Start building with Aavya tokens and registry components.
</p>
</main>
)
}