meal_planner/components/app/footer.vue
2024-12-16 22:10:42 +01:00

25 lines
822 B
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<footer class="footer bg-base-300 text-base-content items-center p-4">
<aside class="grid-flow-col items-center">
<p>Copyright &copy; {{ new Date().getFullYear() }} Made with </p>
</aside>
<nav class="grid-flow-col gap-4 md:place-self-center md:justify-self-end">
<nuxt-link
to="https://github.com/rjNemo/meal_planner"
:external="true"
target="_blank"
aria-label="navigate to the source code on GitHub"
>
<icon name="cib:github" class="w-6 h-6" />
</nuxt-link>
<nuxt-link
to="https://ruidy.nemausat.com"
:external="true"
target="_blank"
aria-label="navigate to my website"
>
<icon name="uil:globe" class="w-6 h-6" />
</nuxt-link>
</nav>
</footer>
</template>