Files
shadcn-ui/apps/www/components/announcement.tsx
shadcn 5ec990a474 docs(www): add blocks contribution docs (#6354)
* docs(www): add blocks contrib docs

* docs(www): update intro

* feat: update banner

* docs: add link

* docs: update block types
2025-01-14 21:56:45 +04:00

17 lines
425 B
TypeScript

import Link from "next/link"
import { ArrowRight } from "lucide-react"
export function Announcement() {
return (
<Link
href="/docs/blocks"
className="group mb-2 inline-flex items-center px-0.5 text-sm font-medium"
>
<span className="underline-offset-4 group-hover:underline">
Blocks are open for contributions
</span>
<ArrowRight className="ml-1 h-4 w-4" />
</Link>
)
}