import { Button } from "@/components/ui/button" import Link from "next/link" interface HeroSectionProps { title: string description: string primaryActionLabel: string primaryActionHref: string secondaryActionLabel?: string secondaryActionHref?: string align?: "center" | "left" image?: string } export function HeroSection({ title, description, primaryActionLabel, primaryActionHref, secondaryActionLabel, secondaryActionHref, align = "center", image, }: HeroSectionProps) { return (

{title}

{description}

{secondaryActionLabel && secondaryActionHref && ( )}
{image && (
Hero Image
)}
) }