base
This commit is contained in:
36
app/components/Footer/Footer.vue
Normal file
36
app/components/Footer/Footer.vue
Normal file
@@ -0,0 +1,36 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user