import { useTranslations } from "next-intl"; import DotAnimatsiya from "../../dot/DotAnimatsiya"; export function Banner() { const t = useTranslations(); 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 */}
); }