"use client" import { Button } from "@/components/ui/button" import { ArrowRightIcon, PlayIcon } from "lucide-react" import ImageComparison from "@/components/image-comparison" import { useTranslations } from "next-intl" interface HeroSectionProps { locale: string } export default function HeroSection({ locale }: HeroSectionProps) { const t = useTranslations("hero") const scrollToSection = (sectionId: string) => { const element = document.getElementById(sectionId) if (element) { element.scrollIntoView({ behavior: "smooth" }) } } return (
{/* Left Content */}

{t("headline")}

{t("subheadline")}

{/* Stats */}
1M+
{t("imagesProcessed")}
50K+
{t("happyUsers")}
99.9%
{t("uptime")}
{/* Right Content - Image Comparison */}
) }