19 lines
348 B
Vue
19 lines
348 B
Vue
<template>
|
|
<footer
|
|
class="bg-gray-900 text-gray-300 flex items-center justify-center h-16"
|
|
>
|
|
<p>
|
|
©2020 Made with <span style="color: red;">♥</span> by
|
|
<a href="https://wazo-lab.io" target="_blank">Wazo Lab</a>
|
|
</p>
|
|
</footer>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Footer"
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|