Files
csgowtf/src/views/Explore.vue
2021-10-06 19:25:00 +02:00

21 lines
324 B
Vue

<template>
<div class="container text-center">
<h1>This site will be available soon</h1>
</div>
</template>
<script>
export default {
name: 'Explore',
// TODO: Events / Lans etc. +
setup() {
document.title = "Explore | csgoWTF"
}
}
</script>
<style scoped>
.container {
margin: 200px auto;
}
</style>