mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-01 08:34:12 +00:00
* feat(www): update mode switcher * feat(www): update layout * feat(www): update theme-color handling * fix(www): docs pages
19 lines
490 B
TypeScript
19 lines
490 B
TypeScript
export const siteConfig = {
|
|
name: "shadcn/ui",
|
|
url: "https://ui.shadcn.com",
|
|
ogImage: "https://ui.shadcn.com/og.jpg",
|
|
description:
|
|
"Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.",
|
|
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",
|
|
}
|