Files
2024-12-30 16:03:02 +03:30

21 lines
377 B
Vue

<template>
<CFooter :fixed="false">
<div class="mfs-auto">
<span class="mr-1" target="_blank">Powered by</span>
<a href="https://danakcorp.com/" target="_blank" class="copy-right textblack">Danak Corp</a>
</div>
</CFooter>
</template>
<script>
export default {
name: 'TheFooter'
}
</script>
<style>
.textblack {
color: #000 !important;
}
</style>