paulnicoue/pages/index.vue
2023-02-21 11:52:22 +01:00

37 lines
755 B
Vue

<template>
<main>
<HeroSection class="hero-section" />
<ServicesSection class="services-section" />
<ProjectsSection class="projects-section" />
<ContactSection class="contact-section" />
</main>
</template>
<script setup>
// --------------------------------------------------
// HEAD
// --------------------------------------------------
definePageMeta({
pageTitleChunk: null
})
</script>
<style lang="scss" scoped>
// --------------------------------------------------
// STYLE
// --------------------------------------------------
main {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
</style>