19 lines
628 B
Vue
19 lines
628 B
Vue
<template>
|
|
<div>
|
|
<LandingPageHeader />
|
|
<LandingPageHero />
|
|
<AboutSection />
|
|
<FeaturedTemplates />
|
|
<HowToSection />
|
|
|
|
</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';
|
|
import FeaturedTemplates from '~/components/landing-page/featuredtemplates.vue';
|
|
import HowToSection from '~/components/landing-page/howtosection.vue';
|
|
//import PrivilegeSection from '~/components/landing-page/privilegesection.vue';
|
|
</script> |