"use client";
import { Button } from "@/components/ui/button";
import { ArrowRight } from "lucide-react";
import { Tagline } from "@/components/pro-blocks/landing-page/tagline";
import { AspectRatio } from "@/components/ui/aspect-ratio";
import Image from "next/image";
export function HeroSection1() {
return (
<section
className="bg-background section-padding-y"
aria-labelledby="hero-heading"
>
<div className="container-padding-x container mx-auto flex flex-col items-center gap-12 lg:flex-row lg:gap-16">
{/* Left Column */}
<div className="flex flex-1 flex-col gap-6 lg:gap-8">
{/* Section Title */}
<div className="section-title-gap-xl flex flex-col">
{/* Tagline */}
<Tagline>Hero Section</Tagline>
{/* Main Heading */}
<h1 id="hero-heading" className="heading-xl">
Headline that solves user's main problem
</h1>
{/* Description */}
<p className="text-muted-foreground text-base lg:text-lg">
Follow with one or two sentences that expand on your value
proposition. Focus on key benefits and address why users should
take action now. Keep it scannable, short and benefit-driven.
</p>
</div>
{/* CTA Buttons */}
<div className="flex flex-col gap-3 sm:flex-row">
<Button>Get started</Button>
<Button variant="ghost">
Explore
<ArrowRight />
</Button>
</div>
</div>
{/* Right Column */}
<div className="w-full flex-1">
<AspectRatio ratio={1 / 1}>
<Image
src="https://ui.shadcn.com/placeholder.svg"
alt="Hero section visual"
fill
priority
className="h-full w-full rounded-xl object-cover"
/>
</AspectRatio>
</div>
</div>
</section>
);
}