mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
19 lines
523 B
TypeScript
19 lines
523 B
TypeScript
export const siteConfig = {
|
|
name: "shadcn/ui",
|
|
url: "https://ui.shadcn.com",
|
|
ogImage: "https://ui.shadcn.com/og.jpg",
|
|
description:
|
|
"A set of beautifully-designed, accessible components and a code distribution platform. Works with your favorite frameworks. Open Source. Open Code.",
|
|
links: {
|
|
twitter: "https://twitter.com/shadcn",
|
|
github: "https://github.com/shadcn-ui/ui",
|
|
},
|
|
}
|
|
|
|
export type SiteConfig = typeof siteConfig
|
|
|
|
export const META_THEME_COLORS = {
|
|
light: "#ffffff",
|
|
dark: "#09090b",
|
|
}
|