Create Footer component with styles

This commit is contained in:
2020-12-17 18:15:40 +01:00
parent 9394950263
commit 111558309e
3 changed files with 21 additions and 6 deletions

18
components/Footer.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<footer
class="bg-gray-900 text-gray-300 flex items-center justify-center h-16"
>
<p>
©2020 Made with <span style="color: red;">&#9829;</span> by
<a href="https://wazo-lab.io" target="_blank">Wazo Lab</a>
</p>
</footer>
</template>
<script>
export default {
name: "Footer"
};
</script>
<style></style>