UNPKG

nhfs

Version:

NHFS — A sleek HTTP file server for the web built with Next.js and HeroUI. (Alpha)

64 lines (62 loc) 1.03 kB
export type SiteConfig = typeof siteConfig; export const siteConfig = { name: 'NHFS', description: 'NHFS — Next.js HTTP File Server. 📁 Upload. 📤 Download. 🌍 Access from anywhere.', navItems: [ { label: 'Home', href: '/', }, { label: 'Docs', href: '/docs', }, { label: 'Pricing', href: '/pricing', }, { label: 'Blog', href: '/blog', }, { label: 'About', href: '/about', }, ], 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', }, ], };