mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
19 lines
437 B
TypeScript
19 lines
437 B
TypeScript
export type SiteConfig = typeof siteConfig
|
|
|
|
export const siteConfig = {
|
|
name: "Next.js",
|
|
description:
|
|
"Beautifully designed components that you can copy and paste into your apps. Accessible. Customizable. Open Source.",
|
|
mainNav: [
|
|
{
|
|
title: "Home",
|
|
href: "/",
|
|
},
|
|
],
|
|
links: {
|
|
twitter: "https://twitter.com/shadcn",
|
|
github: "https://github.com/shadcn/ui",
|
|
docs: "https://ui.shadcn.com",
|
|
},
|
|
}
|