import { cn } from "@/lib/utils"; import { siteConfig } from "@/config/site"; import { ArrowRightIcon } from "lucide-react"; interface BannerProps { className?: string; link?: string; text?: string; } export function Banner({ className, link = siteConfig.url.repo.github, text = "Star this project if you like it.", ...props }: BannerProps) { return (

{text}

); }