feat: delete unused navigation components and update site footer

This commit is contained in:
Bart van der Braak 2024-02-19 01:09:40 +01:00
parent 5343f769fc
commit 1293bf6ad5
9 changed files with 8 additions and 145 deletions

View file

@ -1,17 +0,0 @@
import type { NavItem, SidebarNavItem } from '$lib/types/nav';
interface NavConfig {
mainNav: NavItem[];
sidebarNav: SidebarNavItem[];
}
export const navConfig: NavConfig = {
mainNav: [
{
title: 'Dashboard',
href: '/dashboard',
auth: true
}
],
sidebarNav: []
};