Dolphin-Frontent-Boilerplate/src/layouts/components/Footer.vue
2026-01-01 15:02:59 +05:45

15 lines
452 B
Vue

<template>
<div class="footer-container bg-white">
<div class="flex gap-0.5 justify-end h-full">
<span class="h-fit my-auto text-[13px]">
<span style="font-family: sans-serif" class="font-bold">©</span>
{{ dateYear }}, Mavorion Systems. All rights reserved.
</span>
</div>
</div>
</template>
<script lang="ts" setup>
const dateYear = new Date().getFullYear();
</script>