You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.2 KiB
TypeScript
75 lines
1.2 KiB
TypeScript
export type SiteConfig = typeof siteConfig
|
|
|
|
export const siteConfig = {
|
|
name: 'Next.js + NextUI',
|
|
description:
|
|
'Make beautiful websites regardless of your design experience.',
|
|
navItems: [
|
|
{
|
|
label: 'Home',
|
|
href: '/',
|
|
},
|
|
// {
|
|
// label: 'Docs',
|
|
// href: '/docs',
|
|
// },
|
|
// {
|
|
// label: 'Pricing',
|
|
// href: '/pricing',
|
|
// },
|
|
// {
|
|
// label: 'Blog',
|
|
// href: '/blog',
|
|
// },
|
|
// {
|
|
// label: 'About',
|
|
// href: '/about',
|
|
// },
|
|
{
|
|
label: 'Dashboard',
|
|
href: '/dashboard',
|
|
},
|
|
],
|
|
navMenuItems: [
|
|
{
|
|
label: 'Profile',
|
|
href: '/profile',
|
|
},
|
|
{
|
|
label: 'Dashboard',
|
|
href: '/dashboard',
|
|
},
|
|
{
|
|
label: 'Projects',
|
|
href: '/projects',
|
|
},
|
|
{
|
|
label: 'Team',
|
|
href: '/team',
|
|
},
|
|
{
|
|
label: 'Calendar',
|
|
href: '/calendar',
|
|
},
|
|
{
|
|
label: 'Settings',
|
|
href: '/settings',
|
|
},
|
|
{
|
|
label: 'Help & Feedback',
|
|
href: '/help-feedback',
|
|
},
|
|
{
|
|
label: 'Logout',
|
|
href: '/logout',
|
|
},
|
|
],
|
|
links: {
|
|
github: 'https://github.com/TZGyn/',
|
|
twitter: 'https://twitter.com/getnextui',
|
|
docs: 'https://nextui-docs-v2.vercel.app',
|
|
discord: 'https://discord.gg/9b6yyZKmH4',
|
|
sponsor: 'https://patreon.com/jrgarciadev',
|
|
},
|
|
}
|