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.
42 lines
740 B
TypeScript
42 lines
740 B
TypeScript
export type SiteConfig = typeof siteConfig
|
|
|
|
export const siteConfig = {
|
|
name: 'Dashboard',
|
|
description: 'Dashboard to manage your bookmarks',
|
|
navItems: [
|
|
{
|
|
label: 'Home',
|
|
href: '/',
|
|
},
|
|
{
|
|
label: 'Dashboard',
|
|
href: '/dashboard',
|
|
},
|
|
{
|
|
label: 'Categories',
|
|
href: '/categories',
|
|
},
|
|
],
|
|
navMenuItems: [
|
|
{
|
|
label: 'Home',
|
|
href: '/',
|
|
},
|
|
{
|
|
label: 'Dashboard',
|
|
href: '/dashboard',
|
|
},
|
|
{
|
|
label: 'Categories',
|
|
href: '/categories',
|
|
},
|
|
],
|
|
links: {
|
|
github: 'https://github.com/TZGyn/dashboard',
|
|
twitter: 'https://twitter.com/getnextui',
|
|
docs: 'https://nextui-docs-v2.vercel.app',
|
|
discord: 'https://discord.gg/9b6yyZKmH4',
|
|
sponsor: 'https://patreon.com/jrgarciadev',
|
|
},
|
|
} as const
|