mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-07-09 17:49:12 +00:00
feat: additional component and styling choices
This commit is contained in:
parent
88884a69ac
commit
b03dcbaf2d
52 changed files with 1077 additions and 78 deletions
24
apps/web/src/lib/config/nav.ts
Normal file
24
apps/web/src/lib/config/nav.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
import type { NavItem, SidebarNavItem } from '$lib/types/nav';
|
||||
|
||||
interface NavConfig {
|
||||
mainNav: NavItem[];
|
||||
sidebarNav: SidebarNavItem[];
|
||||
}
|
||||
|
||||
export const navConfig: NavConfig = {
|
||||
mainNav: [
|
||||
{
|
||||
title: 'Home',
|
||||
href: '/'
|
||||
},
|
||||
{
|
||||
title: 'Login',
|
||||
href: '/login'
|
||||
},
|
||||
{
|
||||
title: 'Signup',
|
||||
href: '/signup'
|
||||
}
|
||||
],
|
||||
sidebarNav: []
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue