Files
web/app/components/Footer/Footer.vue
Thien Pham Van cf144ea896 base
2026-03-17 14:08:57 +07:00

37 lines
734 B
Vue

<template>
<footer class="footer">
<div class="container">
<div class="columns">
<div class="column"><FooterInfo /></div>
<div class="column">
<!-- <h3>Lien he</h3> -->
</div>
</div>
<div class="copy-right">
<img src="/icons/shield.svg" alt="" />
<span>BigDataTech Cloud. All rights reserved.</span>
</div>
</div>
</footer>
</template>
<script>
import FooterInfo from './FooterInfo.vue';
</script>
<style lang="scss">
.footer {
// padding: 0 0 20px;
padding-bottom: 0;
.copy-right {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
img {
width: 32px;
height: 32px;
}
}
}
</style>