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.

30 lines
576 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',
},
],
navMenuItems: [
{
label: 'Dashboard',
href: '/dashboard',
},
],
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',
},
} as const