summaryrefslogtreecommitdiff
path: root/src/App.vue
blob: 785eb35d86d8b6f2f6589a56fa431a8e1fc25362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
  <div class="container">
    <section class="hero is-medium is-dark is-bold header">
      <div class="hero-body">
        <div class="container">
          <h1 class="title">
            Broken Talents
          </h1>
          <h2 class="subtitle">
            Tilting Brawlers since May 2017
          </h2>
        </div>
      </div>
    </section>

    <router-view></router-view>
  </div>
</template>


<style scoped>
.header {
  text-align: center;
}
</style>