* Moved nuxt app to main app

This commit is contained in:
Alexis
2021-03-29 11:17:51 +02:00
parent e819e00822
commit d31a9aad7b
113 changed files with 10463 additions and 26133 deletions

37
pages/index.vue Normal file
View File

@@ -0,0 +1,37 @@
<template>
<section class="home bg-image bg-fade-in">
<div class="splash fade-in-children">
<h2 class="heading-1">
Full Skies
</h2>
<p class="heading-2">
Explorez les cieux et le système solaire avec Full Skies !
</p>
<p class="heading-2">
Embarquez pour un voyage stellaire ; destination : le système solaire et
ses astres si proches.
</p>
</div>
</section>
</template>
<script>
export default {
name: 'Home'
}
</script>
<style lang="scss" scoped>
.home {
position: relative;
min-height: inherit;
padding: 0 10%;
display: flex;
align-items: center;
overflow: hidden;
&:after {
background-image: url("/home_bg-min.jpg");
}
}
</style>