diff --git a/src/lib/Routes.ts b/src/lib/Routes.ts index 6899adc..916e609 100644 --- a/src/lib/Routes.ts +++ b/src/lib/Routes.ts @@ -1,12 +1,12 @@ const routes = [ - { - href: '/', - name: 'Home', - }, - { - href: '/projects', - name: 'Projects', - }, + { + href: '/', + name: 'Home' + }, + { + href: '/projects', + name: 'Projects' + } ]; -export default routes; \ No newline at end of file +export default routes; diff --git a/src/lib/components/Navbar.svelte b/src/lib/components/Navbar.svelte index e420b65..3d6229e 100644 --- a/src/lib/components/Navbar.svelte +++ b/src/lib/components/Navbar.svelte @@ -1,19 +1,26 @@ -