bullish/frontend/src/views/Landing.vue
Ameya Shenoy 92169c0800
feat: landing page done
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2021-02-12 15:47:56 +05:30

51 lines
690 B
Vue

<template>
<div class="main">
<div></div>
<div>
<img :src="image"/>
</div>
<div class="details">
<h1>Bullish</h1>
<p>A simple webapp to explore Bhav Copy Equity data</p>
<v-btn
x-large
>
<router-link to="bhavcopy">Explore Now</router-link>
</v-btn>
<div></div>
</div>
<div></div>
</div>
</template>
<script>
import image from "../assets/logo.png"
export default {
data() {
return {
image: image
}
}
}
</script>
<style>
.main {
height: 70%;
display: flex;
align-items: center;
justify-content: space-around;
}
h1 {
font-size: 100px;
}
p {
font-size: 30px;
}
</style>