10 lines
354 B
Vue
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>
|