"use client"; import Image from "next/image"; import { Check } from "lucide-react"; import DotAnimatsiya from "@/components/dot/DotAnimatsiya"; import { useTranslations } from "next-intl"; export function WhyChooseUs() { const t = useTranslations(); const features = [ { title: t("about.whyChoose.features.fastResponse") }, { title: t("about.whyChoose.features.ready24") }, { title: t("about.whyChoose.features.experienced") }, { title: t("about.whyChoose.features.quality") }, ]; return (
{/* Left Content */}
{/* Header */}
{t("about.whyChoose.title")}

{t("about.whyChoose.subtitle")}

{/* Description */}

{t("about.whyChoose.description")}

{/* Features Grid */}
{features.map((feature, index) => (
{feature.title}
))}
{/* CTA Button */}
{/* Right Image Section */}
{/* Main Image */} Best Award Firefighter {/* Overlay Gradient */}
{/* Award Badge */}
Award

{t("about.whyChoose.award")}

); }