paulnicoue/pages/index.vue
2023-02-13 17:23:36 +01:00

53 lines
1.1 KiB
Vue

<template>
<main>
<HeroSection class="hero-section" />
<ServicesSection class="services-section" />
<ContactSection class="contact-section" />
</main>
</template>
<script setup>
// --------------------------------------------------
// HEAD
// --------------------------------------------------
definePageMeta({
pageTitleChunk: null
})
</script>
<style lang="scss" scoped>
// --------------------------------------------------
// STYLE
// --------------------------------------------------
main {
width: 100%;
display: grid;
grid:
'hero-section' auto
'services-section' auto
'contact-section' auto
/ 1fr;
place-content: start center;
place-items: start center;
.hero-section {
grid-area: hero-section;
}
.services-section {
grid-area: services-section;
}
.contact-section {
grid-area: contact-section;
}
}
</style>