2024-11-20 14:53:30 -05:00
|
|
|
import Link from "next/link";
|
2024-11-14 17:46:13 -05:00
|
|
|
|
2024-11-20 14:53:30 -05:00
|
|
|
export default function Hero() {
|
|
|
|
|
{/* Hero Section */ }
|
|
|
|
|
return (
|
2024-11-14 17:46:13 -05:00
|
|
|
|
2024-11-20 14:53:30 -05:00
|
|
|
<section className="bg-gray-700 text-white py-20 text-center">
|
|
|
|
|
<div className="container mx-auto px-6">
|
|
|
|
|
<h2 className="text-4xl font-bold mb-4">Build Your Dream Firearm</h2>
|
|
|
|
|
<p className="text-lg mb-6">
|
|
|
|
|
Customize every component of your firearm with ease and precision.
|
|
|
|
|
</p>
|
2024-11-21 13:03:00 -05:00
|
|
|
<span>
|
2024-11-20 14:53:30 -05:00
|
|
|
<Link
|
|
|
|
|
href="/builder"
|
|
|
|
|
className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
|
2024-11-14 17:46:13 -05:00
|
|
|
|
2024-11-20 14:53:30 -05:00
|
|
|
Get Started
|
2024-11-14 17:46:13 -05:00
|
|
|
|
2024-11-20 14:53:30 -05:00
|
|
|
</Link>
|
2024-11-21 13:03:00 -05:00
|
|
|
</span>
|
2024-11-20 14:53:30 -05:00
|
|
|
</div>
|
|
|
|
|
</section>
|
2024-11-14 17:46:13 -05:00
|
|
|
|
2024-11-20 14:53:30 -05:00
|
|
|
)
|
|
|
|
|
}
|