mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* feat: add github scheme * fix * fix: validate and search * docs: update docs for GitHub registries * docs: add changelog * fix * chore: update announcement * docs(skills): update GitHub registry guidance * fix(registry): reject option-like GitHub refs * fix(registry): limit search registry discovery * fix(registry): bound GitHub validation concurrency * fix(registry): reject whitespace in GitHub refs * fix(registry): track URL dependency sources * test(registry): cover local dependency sources
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import Link from "next/link"
|
|
import { ArrowRightIcon } from "lucide-react"
|
|
|
|
import { Badge } from "@/registry/new-york-v4/ui/badge"
|
|
|
|
export function Announcement() {
|
|
return (
|
|
<Badge asChild variant="secondary" className="bg-muted">
|
|
<Link href="/docs/registry/github">
|
|
Introducing GitHub Registries <ArrowRightIcon />
|
|
</Link>
|
|
</Badge>
|
|
)
|
|
}
|