diff --git a/src/components/banner.tsx b/src/components/banner.tsx new file mode 100644 index 0000000..2d09b96 --- /dev/null +++ b/src/components/banner.tsx @@ -0,0 +1,31 @@ +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} + + +
+