File size: 899 Bytes
23c1680
bbc67f0
23c1680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>
  )
}