Hanzo Dev
Replace @hanzo /ui with local UI components for React 19 compatibility
bbc67f0
raw
history blame contribute delete
899 Bytes
import { siteConfig } from '@/lib/site'
import { Button } from '@/components/ui/button'
export function Hero() {
return (
<section className="relative py-24 px-4">
<div className="max-w-7xl mx-auto text-center">
<h1 className="text-5xl md:text-6xl font-bold mb-6">
{siteConfig.name}
</h1>
<p className="text-2xl md:text-3xl text-gray-600 dark:text-gray-400 mb-8">
{siteConfig.tagline}
</p>
<p className="text-lg text-gray-500 dark:text-gray-500 max-w-2xl mx-auto mb-12">
{siteConfig.description}
</p>
<div className="flex gap-4 justify-center">
<Button size="lg" className="font-mono">
npm install
</Button>
<Button size="lg" variant="outline" className="font-mono">
View Docs
</Button>
</div>
</div>
</section>
)
}