forked from CSGOWTF/csgowtf
21 lines
324 B
Vue
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> |