import { cn } from "@/lib/utils"; import { siteConfig } from "@/config/site"; import { useTranslations } from 'next-intl'; import { ArrowRightIcon } from "lucide-react"; interface BannerProps { className?: string; link?: string; text?: string; } export function Banner({ className, link = siteConfig.url.repo.github, text, ...props }: BannerProps) { const t = useTranslations(); return (

{text || t("Banner.Text")}

); }