37 lines
755 B
Vue
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>
|