Files
MovieFinder/nuxt/components/TheFooter.vue

18 lines
303 B
Vue

<template>
<a-layout-footer>
MovieFinder © 2020 | Made with
<span style="color: #e74c3c;">&#9829;</span> by Noé Viricel
</a-layout-footer>
</template>
<script>
export default {};
</script>
<style scoped>
.ant-layout-footer {
text-align: center;
background-color: #f0f2f5;
}
</style>