2022-01-23 19:56:15 +00:00
|
|
|
<template>
|
2022-01-30 13:51:59 +00:00
|
|
|
<div>
|
|
|
|
<Navigation></Navigation>
|
|
|
|
<div id="home">
|
|
|
|
<div class="wallpaper"></div>
|
|
|
|
<div class="single-button-layout">
|
|
|
|
<NuxtLink to="/about"
|
|
|
|
tag="button"
|
|
|
|
class="button is-light is-outlined is-rounded">About me
|
|
|
|
</NuxtLink>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-23 19:56:15 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'IndexPage'
|
|
|
|
}
|
|
|
|
</script>
|
2022-01-30 13:51:59 +00:00
|
|
|
<style lang="scss">
|
|
|
|
@import "~assets/main.scss";
|
|
|
|
|
|
|
|
.description {
|
|
|
|
position: absolute;
|
|
|
|
top: 15%;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.single-button-layout {
|
|
|
|
position: absolute;
|
|
|
|
top: 70%;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home .wallpaper {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
background: url("~assets/home.jpg") no-repeat center center;
|
|
|
|
background-size: cover;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|