glowing-fiesta/app/layouts/default/Footer.vue
Liviu Burcusel 9e58fa3919
Some checks failed
Production Build and Deploy / Build (push) Failing after 14s
Production Build and Deploy / Deploy (push) Has been skipped
Test deploy 1
2025-12-15 14:27:50 +01:00

10 lines
354 B
Vue

<script setup lang="ts">
const currentYear = new Date().getFullYear();
</script>
<template>
<footer class="layout-footer font-bold">
<div v-if="currentYear === 2025">Glowing Fiesta 2025</div>
<div v-else>Glowing Fiesta 2025 - {{ currentYear }}</div>
<div class="font-light text-emerald-500">(with auto-deploy)</div>
</footer>
</template>