merakiui/components/Footer.vue

9 lines
327 B
Vue
Raw Normal View History

<template>
<div class="container px-6 mx-auto">
<div class="flex flex-col items-center border-t border-gray-200">
<div class="py-6 text-center">
<p class="text-sm text-gray-600">© {{ (new Date().getFullYear()) }} by Baka Team</p>
</div>
</div>
</div>
</template>