Refactor navigation in sidebar

This commit is contained in:
luke-hagar-sp
2024-02-13 10:39:45 -06:00
parent 13a1873343
commit 775b2dced0

View File

@@ -1,5 +1,4 @@
import HomeSvg from '$lib/Components/SVGs/HomeSVG.svelte'; import HomeSvg from '$lib/Components/SVGs/HomeSVG.svelte';
import MessagesSvg from '$lib/Components/SVGs/MessagesSVG.svelte';
import ReportsSvg from '$lib/Components/SVGs/ReportsSVG.svelte'; import ReportsSvg from '$lib/Components/SVGs/ReportsSVG.svelte';
export const navigation = [ export const navigation = [
@@ -13,10 +12,15 @@ export const navigation = [
icon: HomeSvg icon: HomeSvg
}, },
{ {
url: '/home/Example Pages', url: '/home/reports',
name: 'Reports', name: 'Example Pages',
description: 'a list of example pages showcasing how to implement the IdentityNow SDK.', description: 'a list of example pages showcasing how to implement the IdentityNow SDK.',
icon: ReportsSvg icon: ReportsSvg
},
{
url: '/home/example-form',
name: 'Example Form',
description: 'A form example using the IdentityNow SDK.'
} }
] ]
} }