121 lines
3.1 KiB
Vue
121 lines
3.1 KiB
Vue
<template>
|
|
<footer class="footer" >
|
|
<div class="community-bar">
|
|
<div class="title">JOIN OUR COMMUNITY</div>
|
|
<div class="icon-list">
|
|
<a href="https://discord.gg/8dWX6jpcME">
|
|
<img src="@/assets/202202/discord-logo-color@2x.png" alt="discord"/>
|
|
</a>
|
|
<a href="https://t.me/CEBG_official">
|
|
<img src="@/assets/202202/telegram-logo@2x.png" alt="telegram"/>
|
|
</a>
|
|
<a href="https://twitter.com/CEBG_GAME">
|
|
<img src="@/assets/202202/logowhite@2x.png" alt="twitter"/>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="link-list">
|
|
<div class="sub-list">
|
|
<div class="title">Product</div>
|
|
<a href="/">Home</a>
|
|
<a href="/gameplay/index.html">Gameplay</a>
|
|
<a href="/tokenomic/index.html">Tokenomic</a>
|
|
<a href="/nft/index.html">NFT</a>
|
|
<a href="javascript:void(0);" @click="comingSoon">Marketplace</a>
|
|
</div>
|
|
<div class="sub-list">
|
|
<div class="title">Resources</div>
|
|
<a href="https://whitepaper.cebg.games/">Whitepaper</a>
|
|
</div>
|
|
<div class="sub-list">
|
|
<div class="title">About</div>
|
|
<a href="/team/index.html">Team</a>
|
|
<a href="/roadmap/index.html" >Roadmap</a>
|
|
</div>
|
|
<div class="sub-list">
|
|
<div class="title">Policies</div>
|
|
<a href="javascript:void(0);" @click="comingSoon">Terms of use</a>
|
|
<a href="javascript:void(0);" @click="comingSoon">Privacy Policy</a>
|
|
</div>
|
|
<div class="sub-list">
|
|
<div class="title">Contact us</div>
|
|
<a href="mailto:contact@cebg.games">contact@cebg.games</a>
|
|
</div>
|
|
</div>
|
|
<div class="copy-right">
|
|
Copyright © CEBG. All rights reserved.
|
|
<chain-modal></chain-modal>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator'
|
|
import ChainModal from '@/components/core/ChainModal.vue'
|
|
|
|
@Component({
|
|
name: 'DesktopFooter',
|
|
components: {
|
|
ChainModal
|
|
|
|
}
|
|
})
|
|
export default class extends Vue {
|
|
private chainModalShow = true
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.footer {
|
|
display: flex;
|
|
height: 410px;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
.community-bar{
|
|
width: 100%;
|
|
height: 100px;
|
|
background-image: linear-gradient(to right, #FFDF2C , #FF8613);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.title{
|
|
color: #404040;
|
|
font-size: 26px;
|
|
margin-left: 395px;
|
|
}
|
|
.icon-list{
|
|
margin-right: 366px;
|
|
display: flex;
|
|
gap: 64px;
|
|
}
|
|
}
|
|
.link-list{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
width: 55%;
|
|
margin-top: 34px;
|
|
.sub-list{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
color: #B4B4B4;
|
|
gap: 20px;
|
|
a{
|
|
color: #B4B4B4;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
.title{
|
|
color: #F4F4F4;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
.copy-right{
|
|
color: #B4B4B4;
|
|
}
|
|
}
|
|
</style>
|