This commit is contained in:
Šimon Jan Šustek 2021-01-23 03:02:51 +01:00
parent 4f5b57d6eb
commit 600bdbac64
2 changed files with 34 additions and 25 deletions

View File

@ -3,26 +3,3 @@
<router-view/>
</div>
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
#nav {
padding: 30px;
}
#nav a {
font-weight: bold;
color: #2c3e50;
}
#nav a.router-link-exact-active {
color: #42b983;
}
</style>

View File

@ -1,7 +1,39 @@
<template>
<div class="home">
Welcome fuckers<br>
<router-link to="/edit">Here be link to form</router-link>
<section class="hero is-fullheight">
<div class="hero-body">
<div class="container">
<h1 class="title">
Vítejte v Res Judicata!
</h1>
<h2 class="subtitle">
Lorem Impsum
</h2>
<div class="columns is-multiline">
<div class="column is-one-third">
<router-link to="/edit">
<div class="card">
<div class="card-content">
<b>Nemám žalobu</b> a chci pomoci se správným vyplněním žaloby
</div>
</div>
</router-link>
</div>
<div class="column is-two-thirds">
</div>
<div class="column is-one-third">
<router-link to="/upload">
<div class="card">
<div class="card-content">
<b>Mám žalobu</b> a chci zkontrolovat její náležitosti
</div>
</div>
</router-link>
</div>
</div>
</div>
</div>
</section>
</div>
</template>