paulnicoue/pages/index.vue

53 lines
1.1 KiB
Vue
Raw Permalink Normal View History

2022-09-30 16:18:49 +02:00
<template>
<main>
<HeroSection class="hero-section" />
<!-- <ServicesSection class="services-section" />
<ProjectsSection class="projects-section" /> -->
2023-01-20 18:08:51 +01:00
<ContactSection class="contact-section" />
</main>
2022-09-30 16:18:49 +02:00
</template>
<script setup>
2023-01-06 15:46:20 +01:00
// --------------------------------------------------
2022-09-30 16:18:49 +02:00
// HEAD
2023-01-06 15:46:20 +01:00
// --------------------------------------------------
2022-09-30 16:18:49 +02:00
definePageMeta({
pageTitleChunk: null
})
// --------------------------------------------------
// PROGRAM
// --------------------------------------------------
onMounted(() => {
const AOS = useNuxtApp().$AOS;
AOS.init({
delay: 0,
duration: 600,
easing: 'ease-in-out',
offset: 100,
once: true
});
})
2022-09-30 16:18:49 +02:00
</script>
2023-01-11 15:16:55 +01:00
<style lang="scss" scoped>
// --------------------------------------------------
// STYLE
2023-01-11 15:16:55 +01:00
// --------------------------------------------------
main {
2023-01-20 18:08:51 +01:00
width: 100%;
2023-02-21 11:52:22 +01:00
display: flex;
flex-direction: column;
align-items: center;
}
</style>