17 lines
346 B
Vue
17 lines
346 B
Vue
<template>
|
|
<CFooter :fixed="false">
|
|
<div class="mfs-auto">
|
|
<div class="copy-right">
|
|
<span class="mr-1">Powered by</span>
|
|
<a href="https://danakcorp.com/fa" target="_blank" class="company">Danak Corporation</a>
|
|
</div>
|
|
</div>
|
|
</CFooter>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'TheFooter'
|
|
}
|
|
</script>
|