import { useLocale, useTranslations } from "next-intl"; import DotAnimatsiya from "../../dot/DotAnimatsiya"; import Link from "next/link"; export function Banner() { const t = useTranslations(); const locale = useLocale(); return (
{/* Background Image */}
{/* Gradient Overlay - Bottom-left to top-right */}
{/* Content Container */}
{/* Right side - Text Content */}
{/* Badge */}
{t("home.banner.title1")}
{/* Main Heading */}

{t("home.banner.title2")}

{/* Description */}

{t("home.banner.description")}

{/* CTA Button */}
{/* Left side - Firefighters Image */}
Firefighters
{/* Right side - Text Content */}
{/* Badge */}
{t("home.banner.title1")}
{/* Main Heading */}

{t("home.banner.title2")}

{/* Description */}

{t("home.banner.description")}

{/* CTA Button */} {t("home.banner.cta")}
); }