mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-26 06:05:56 +00:00
* feat: add registry directory * fix: lint * feat: add more registries * feat: add nuqs to directory * feat: add shadcndesign * feat: add more registries * feat: add new registries * chore: remove hooks
47 lines
946 B
TypeScript
47 lines
946 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 components that you can customize, extend, and build on. Start here then make it your own. 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: "/docs/directory",
|
|
label: "Directory",
|
|
},
|
|
{
|
|
href: "/themes",
|
|
label: "Themes",
|
|
},
|
|
{
|
|
href: "/colors",
|
|
label: "Colors",
|
|
},
|
|
],
|
|
}
|
|
|
|
export const META_THEME_COLORS = {
|
|
light: "#ffffff",
|
|
dark: "#09090b",
|
|
}
|