Adding initial nuxt version for static page.

This commit is contained in:
Tomasz Półgrabia 2022-01-30 14:51:59 +01:00
parent 0f7094c61a
commit 1671d19134
28 changed files with 2744 additions and 102 deletions

View file

@ -1,5 +1,16 @@
<template>
<Tutorial/>
<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>
</template>
<script>
@ -7,3 +18,33 @@ export default {
name: 'IndexPage'
}
</script>
<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>