website/ui/src/views/Home.vue

22 lines
360 B
Vue

<template>
<div id="home">
<v-parallax class="troploGradient">
<p class="text-h2 normal">asdasd</p>
</v-parallax>
</div>
</template>
<style>
.troploGradient {
background: -webkit-radial-gradient(#0179f3, #0190ea)
}
.normal {
font-color: #ffffff
}
</style>
<script>
export default {
name: 'Home',
}
</script>