perf(Footer.vue): añadido al componente un apartado de Contacto

parent 2df170a2
Showing with 15 additions and 3 deletions
<template> <template>
<footer class="py-4 bg-footer mt-auto"> <footer class="py-3 bg-footer mt-auto">
<div class="container-fluid px-4"> <div class="container-fluid px-4">
<div class="d-flex align-items-center justify-content-between small"> <div class="d-flex align-items-center justify-content-between small">
<div class="text-muted">Copyright &copy; Mi Cocina Digital 2025</div> <div class="text-muted">Copyright &copy; Mi Cocina Digital {{ currentYear }}</div>
<div class="col-md-4 text-center">
<div class="text-muted fw-bold">Contacto</div>
<div class="text-muted">
<i class="bi bi-envelope-fill me-1"></i> amaf0001@red.ujaen.es
</div>
</div>
<div> <div>
<a href="#">Privacy Policy</a> <a href="#">Privacy Policy</a>
&middot; &middot;
...@@ -13,9 +19,14 @@ ...@@ -13,9 +19,14 @@
</footer> </footer>
</template> </template>
<script setup>
import { ref } from 'vue';
const currentYear = ref(new Date().getFullYear());
</script>
<style scoped> <style scoped>
.bg-footer { .bg-footer {
background-color: #f4f6f5; background-color: #f4f6f5;
height: 60px; height: 70px;
} }
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment