mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
25 lines
822 B
Vue
25 lines
822 B
Vue
<template>
|
||
<footer class="footer bg-base-300 text-base-content items-center p-4">
|
||
<aside class="grid-flow-col items-center">
|
||
<p>Copyright © {{ 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>
|