Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove dapps form frontend #450

Merged
merged 2 commits into from
Aug 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion src/views/dapps/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,47 @@
</v-toolbar-title>
</v-toolbar>
<v-container style="max-width: 1280px">
<router-view></router-view>
<v-card-text class="d-flex flex-column align-center justify-center">
<v-img :src="imageName" max-height="300" contain></v-img>
<div class="information font-weight-regular mt-2">
<span>
The Dapps store is permanently moved to TzKT.<br/>
All information and statistics about dapps can be found
<a
style="text-decoration: underline"
target="_blank"
rel="noopener"
href="https://tzkt.io/dapps"
>here</a>.
</span>
</div>
</v-card-text>
</v-container>
</div>
</div>
</template>

<script>
const images = require.context('@/assets/', false, /\.png$/)

export default {
name: "MainDApp",
computed: {
imageName() {
if (this.$vuetify.theme.isDark) return images('./api_relocate_dark.png');
return images('./api_relocate_light.png');
}
}
};
</script>

<style scoped>
.information {
width: 650px;
font-style: normal;
font-size: 20px;
line-height: 160%;
text-align: center;
color: #959595;
}
</style>