diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/Footer.vue | 15 | ||||
| -rw-r--r-- | components/Navbar.vue | 20 |
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>© 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 |
