13 lines
343 B
Vue
13 lines
343 B
Vue
<template>
|
|
<div>
|
|
<LandingPageHeader />
|
|
<LandingPageHero />
|
|
<AboutSection />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LandingPageHeader from '~/components/landing-page/header.vue';
|
|
import LandingPageHero from '~/components/landing-page/hero.vue';
|
|
import AboutSection from '~/components/landing-page/aboutsection.vue';
|
|
</script> |