Files
shadcn-ui/apps/v4/lib/config.ts
shadcn b5cf967848 feat: add themes page back (#7503)
* feat: add themes page back

* fix: values

* fix: redirect
2025-05-30 17:45:02 +04:00

43 lines
879 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",
},
navItems: [
{
href: "/docs/installation",
label: "Docs",
},
{
href: "/docs/components",
label: "Components",
},
{
href: "/blocks",
label: "Blocks",
},
{
href: "/charts/area",
label: "Charts",
},
{
href: "/themes",
label: "Themes",
},
{
href: "/colors",
label: "Colors",
},
],
}
export const META_THEME_COLORS = {
light: "#ffffff",
dark: "#09090b",
}