Merge pull request 'Fixed year of footer and removed one component(Image Cropper)' (#1) from atamrakar/Dolphin-Frontent-Boilerplate:footer_fix into dev

Reviewed-on: Mavorion/Dolphin-Frontent-Boilerplate#1
This commit is contained in:
Sandip Ghimire 2026-01-06 16:01:13 +05:45
commit 416b986704

View File

@ -3,10 +3,12 @@
<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>
2025, Mavorion Systems. All rights reserved.
{{ dateYear }}, Mavorion Systems. All rights reserved.
</span>
</div>
</div>
</template>
<script lang="ts" setup></script>
<script lang="ts" setup>
const dateYear = new Date().getFullYear();
</script>