Skip to content

Commit

Permalink
Merge pull request #143 from bianjieai/develop
Browse files Browse the repository at this point in the history
v0.5.0-20230707
  • Loading branch information
zhangjinbiao746 authored Jul 7, 2023
2 parents d665e4c + 3dd6e48 commit a092521
Show file tree
Hide file tree
Showing 11 changed files with 409 additions and 42 deletions.
20 changes: 10 additions & 10 deletions docs/.vuepress/components/HowToJoin.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
<div class="register_container">
<div class="bg_left_style"></div>
<div class="register_content">
<div class="register_title">Phase 2 Hackathon</div>
<div class="open_for_registration">Successfully Concluded!</div>
<div class="register_title">Game of NFTs</div>
<div class="open_for_registration">Celebrate the Conclusion!</div>
<div class="register_content_wrap">
<div class="register_content_left">
<p>With proud and gratitude, we announce that both two phases of GoN are now successfully concluded! Our gratitude goes to all the talented teams and individuals who participated and showcased their skills in this event.</p>
<p>Currently all submissions in phase 2 are being carefully reviewed and assessed by our dedicated team of judges. We encourage you to stay tuned and keep an eye on our website for the final results. </p>
<p>The Game of NFTs journey has ended here, but our mission and dream of Interchain NFTs will extend far beyond. Let's start here and meet in the future!</p>
<p>With the conclusion of the Interchain Hackathon, the exhilarating developer event Game of NFTs has come to an thrilling end! Winners of both two phases have already been announced, welcome to check the complete list <a href="https://interchainnfts.dev/gon/winners.html" :style="{color: '#9e63ff'}" target="_blank" rel="noreferrer noopener">here</a>. Big shoutout to all participants, judges, and contributors who made this event a resounding success!</p>
<p>As the curtains fall, we look ahead with great anticipation. The impact of GoN will reverberate for years to come. We hope this journey has sparked new connections and opened doors to exciting new opportunities.</p>
<p>Stay tuned for more adventures as we continue pushing the boundaries of Interchain NFTs!</p>
</div>
<div class="register_content_right">
<div class="register_content_img_content">
<img src="../public/register_bg.png" alt="">
<div class="register_button_content">
<div class="register_button_label">Game of NFTs is now concluded</div>
<div class="register_sign_up_label">Congrats for completing the journey!</div>
<a href="https://interchainnfts.dev/gon/updates.html" rel="noreferrer noopener" class="register_button"
target="_blank">Check previous updates</a>
<div class="register_button_label">Game of NFTs <br/> is now concluded</div>
<div class="register_sign_up_label">Congrats to all winners!</div>
<a href="https://interchainnfts.dev/gon/winners.html" rel="noreferrer noopener" class="register_button"
target="_blank">Check out the winner list</a>
</div>
</div>
</div>
Expand Down Expand Up @@ -177,7 +177,7 @@ export default {
font-size: 0.28rem;
font-weight: bold;
color: #FFFFFF;
line-height: 0.28rem;
line-height: 0.32rem;
margin-bottom: 0.32rem;
@media (max-width: 768px) {
font-size: 0.2rem;
Expand Down
122 changes: 122 additions & 0 deletions docs/.vuepress/components/WinnerTrack.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
<template>
<div class="winner_track_container">
<h5 class="winner_track_title">{{trophyTitle}}</h5>
<div class="winner_track_content" v-for="(item,index) in list" :key="index">
<div class="winner_track_wrap">
<div class="trophy_content">
<img class="cup_img" :src="item.img" alt="">
<div class="team_name">
<div class="ranking" :style="{width: item.label ? `0.9rem` : '0'}">{{item.label}}</div>
<a class="href_name" :href="item.href" target="_blank" rel="noreferrer noopener">{{item.value}}</a>
</div>
</div>
</div>
</div>
</div>

</template>

<script>
export default {
name: "WinnerTrack",
props: {
trophyTitle:{
type: String,
default: ''
},
list: {
type: Array,
default: []
}
}
}
</script>

<style scoped lang="less">
.winner_track_container{
.winner_track_title{
text-align: center;
font-size: 0.16rem;
font-weight: 600;
color: #FFFFFF;
line-height: 0.24rem;
margin: 1rem 0 0.32rem 0;
@media(max-width: 768px){
padding: 0 0.2rem;
}
}
.winner_track_content{
display: flex;
width: 100%;
align-items: center;
justify-content: center;
background: url("../public/winner_trophy_bg.png") no-repeat center center;
background-size: cover;
@media(max-width: 768px){
margin-bottom: 0.08rem;
}
@media(max-width: 500px){
background-size: 120%;
}
.winner_track_wrap{
display: flex;
@media(max-width: 400px){
width: 100%;
}
.trophy_content{
display: flex;
width: 100%;
align-items: center;
justify-content: center;
padding: 0.6rem 0;
@media(max-width: 768px){
padding: 0.46rem 0.2rem;
}
.cup_img{
height: 0.48rem;
width: auto;
margin-right: 0.16rem;
}
.team_name {
font-size: 28px;
display: flex;
align-items: center;
.ranking{
width: 0.9rem;
font-size: 0.16rem;
font-weight: 400;
color: #FFFFFF;
line-height: 0.24rem;
white-space: nowrap;
}
.href_name{
font-size: 0.28rem;
font-weight: 600;
color: #FFFFFF;
line-height: 0.36rem;
margin-left: 0.52rem;
@media(max-width: 768px){
max-width: 1.7rem;
font-size: 0.21rem;
line-height: 0.28rem;
margin-left: 0.24rem;
}
&:hover{
color: #9E63FF;
}
}
}
}
}
}
.winner_track_content:last-child{
margin-bottom: 0.6rem;
}
}
.winner_track_container:first-child{
.winner_track_title{
margin-top: 0.48rem;
}
}
</style>
3 changes: 2 additions & 1 deletion docs/.vuepress/components/WinnerTrophy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default {
}
.winner_trophy_title{
font-size: 0.16rem;
font-weight: 400;
font-weight: 600;
color: #FFFFFF;
line-height: 0.24rem;
height: 0.48rem;
Expand All @@ -61,6 +61,7 @@ export default {
margin-right: 0.16rem;
}
.team_name {
font-weight: 600;
font-size: 28px;
}
}
Expand Down
6 changes: 3 additions & 3 deletions docs/.vuepress/config/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"serverUri": "${serverUri}",
"GoogleAnalyticsId": "${GoogleAnalyticsId}",
"releaseTime": "${releaseTime}"
"serverUri": "http://interchainnfts.dev.sh.bianjie.ai",
"GoogleAnalyticsId": "G-7V5BCCBYLX",
"releaseTime": "0"
}
Loading

0 comments on commit a092521

Please sign in to comment.