feat: additional component and styling choices

This commit is contained in:
Bart van der Braak 2024-01-29 00:55:20 +01:00
parent 88884a69ac
commit b03dcbaf2d
52 changed files with 1077 additions and 78 deletions

View 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: []
};