aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-04-22 10:38:26 -0400
committerAndrew Lee <alee14498@protonmail.com>2020-04-22 10:38:26 -0400
commit0ec77648211d343a7400e6e09fe5a2b3c500b564 (patch)
treed95cb7172b983e53b289c7b1e0e9e276c8f23e33 /components
downloadpersonal-website-0ec77648211d343a7400e6e09fe5a2b3c500b564.tar.gz
personal-website-0ec77648211d343a7400e6e09fe5a2b3c500b564.tar.bz2
personal-website-0ec77648211d343a7400e6e09fe5a2b3c500b564.zip
Inital rewrite
Diffstat (limited to 'components')
-rw-r--r--components/Footer.vue15
-rw-r--r--components/Navbar.vue20
2 files changed, 35 insertions, 0 deletions
diff --git a/components/Footer.vue b/components/Footer.vue
new file mode 100644
index 0000000..616c8d2
--- /dev/null
+++ b/components/Footer.vue
@@ -0,0 +1,15 @@
+<template>
+ <div>
+ <p>&copy; Copyright 2018-2020, Andrew Lee.</p>
+ </div>
+</template>
+
+<script>
+ export default {
+ name: "Footer"
+ }
+</script>
+
+<style scoped>
+
+</style> \ No newline at end of file
diff --git a/components/Navbar.vue b/components/Navbar.vue
new file mode 100644
index 0000000..80254b6
--- /dev/null
+++ b/components/Navbar.vue
@@ -0,0 +1,20 @@
+<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>
+</template>
+
+<script>
+ export default {
+ name: "Navbar"
+ }
+</script>
+
+<style scoped>
+
+</style> \ No newline at end of file