aboutsummaryrefslogtreecommitdiff
path: root/components/Navbar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/Navbar.vue')
-rw-r--r--components/Navbar.vue32
1 files changed, 20 insertions, 12 deletions
diff --git a/components/Navbar.vue b/components/Navbar.vue
index 80254b6..725a666 100644
--- a/components/Navbar.vue
+++ b/components/Navbar.vue
@@ -1,20 +1,28 @@
<template>
- <div>
- <b-navbar toggleable="lg" type="dark" variant="dark">
- <b-navbar-brand href="/">Andrew Lee</b-navbar-brand>
- <b-navbar-nav>
- <b-nav-item href="/">Home</b-nav-item>
- </b-navbar-nav>
- </b-navbar>
- </div>
+ <v-card>
+ <v-toolbar dark>
+ <v-toolbar-title>Andrew Lee</v-toolbar-title>
+ <v-spacer/>
+ <v-btn to="/" text>
+ Home
+ </v-btn>
+ <v-btn to="/blog" text>
+ Blog
+ </v-btn>
+ <v-btn to="/projects" text>
+ Projects
+ </v-btn>
+ </v-toolbar>
+ </v-card>
</template>
<script>
- export default {
- name: "Navbar"
- }
+export default {
+ name: 'Navbar'
+}
+
</script>
<style scoped>
-</style> \ No newline at end of file
+</style>