diff --git a/README.md b/README.md
index 057a6f4..85bf3d9 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# tailwind-bartik
+# vue-tailwind-bartik
## Project setup
```
diff --git a/src/components/MainMenu.vue b/src/components/MainMenu.vue
index 73698be..252ef6a 100644
--- a/src/components/MainMenu.vue
+++ b/src/components/MainMenu.vue
@@ -15,10 +15,24 @@
-
@@ -28,6 +42,39 @@
data: function () {
return {
open: false,
+
+ links: [
+ {
+ title: 'Home',
+ href: '#0',
+ active: true,
+ },
+ {
+ title: 'Drupal',
+ href: 'https://www.drupal.org',
+ active: false,
+ },
+ {
+ title: 'Vue.js',
+ href: 'https://vuejs.org',
+ active: false,
+ },
+ {
+ title: 'Tailwind CSS',
+ href: 'https://tailwindcss.com',
+ active: false,
+ },
+ {
+ title: 'View code on GitHub',
+ href: 'https://github.com/opdavies/vue-tailwind-bartik',
+ active: false,
+ },
+ // {
+ // title: 'Read blog post',
+ // href: 'https://github.com/opdavies/tailwind-bartik',
+ // active: false,
+ // },
+ ]
}
},