import { useLocale, useTranslations } from "next-intl"; import DotAnimatsiya from "../../../dot/DotAnimatsiya"; import Link from "next/link"; import { BannerSlider } from "./slider"; export function Banner() { const t = useTranslations(); const locale = useLocale(); return (
{/* Background Image */}
{/* Gradient Overlay - Bottom-left to top-right */}
{/* Content Container */}
); }