mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
interface SiteConfig {
|
|
name: string
|
|
description: string
|
|
links: {
|
|
twitter: string
|
|
github: string
|
|
docs: string
|
|
}
|
|
}
|
|
|
|
export const siteConfig: SiteConfig = {
|
|
name: "Playground",
|
|
description: "Dashboard built using Next.js, Tailwind CSS, and Radix UI",
|
|
links: {
|
|
twitter: "https://twitter.com/shadcn",
|
|
github: "https://github.com/shadcn/ui",
|
|
docs: "https://ui.shadcn.com",
|
|
},
|
|
}
|