naweigete-web/components/AppFooter.vue

10 lines
288 B
Vue
Raw Normal View History

2025-03-12 14:18:25 +08:00
<template>
<footer class="w-full bg-gray-800 text-white py-6 mt-auto">
<div class="container mx-auto px-4 text-center">
<p>&copy; {{ new Date().getFullYear() }} Your Company Name. All rights reserved.</p>
</div>
</footer>
</template>
<script lang="ts" setup>
</script>