mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-09 06:55:07 +00:00
19 lines
375 B
TypeScript
19 lines
375 B
TypeScript
interface SiteConfig {
|
|
name: string
|
|
description: string
|
|
links: {
|
|
twitter: string
|
|
github: string
|
|
}
|
|
}
|
|
|
|
export const siteConfig: SiteConfig = {
|
|
name: "shadcn/ui",
|
|
description:
|
|
"Beautifully designed components built with Radix UI and Tailwind CSS.",
|
|
links: {
|
|
twitter: "https://twitter.com/shadcn",
|
|
github: "https://github.com/shadcn/ui",
|
|
},
|
|
}
|