diff --git a/resources/js/components/Navbar.vue b/resources/js/components/Navbar.vue
index 18ddbb34..c195414f 100644
--- a/resources/js/components/Navbar.vue
+++ b/resources/js/components/Navbar.vue
@@ -21,7 +21,11 @@
aria-label="Toggle main menu"
@click="hidden = !hidden"
>
-
+
@@ -67,38 +71,38 @@ export default {
{
title: 'About',
href: '/',
- pattern: '^/.$',
+ pattern: '^/.$'
},
{
title: 'Projects',
href: '/projects',
- pattern: '^/projects/?$',
+ pattern: '^/projects/?$'
},
{
title: 'Articles',
href: '/articles',
- pattern: '^/articles/?',
+ pattern: '^/articles/?'
},
{
title: 'Talks',
href: '/talks',
- pattern: '^/talks/?',
+ pattern: '^/talks/?'
},
{
title: 'Podcasts',
href: '/podcasts',
- pattern: '^/podcasts/?',
+ pattern: '^/podcasts/?'
},
{
title: 'Book',
href: '/test-driven-drupal',
- pattern: '^/test-driven-drupal/?$',
+ pattern: '^/test-driven-drupal/?$'
},
{
title: 'Contact',
href: '/contact',
- pattern: '^/contact/?',
- },
+ pattern: '^/contact/?'
+ }
],
}
},