40 lines
1.1 KiB
Vue
40 lines
1.1 KiB
Vue
<template>
|
|
<div>
|
|
<LandingPageHeader />
|
|
<LandingPageHero />
|
|
|
|
<section id="tentang-kami">
|
|
<AboutSection />
|
|
</section>
|
|
|
|
<section id="templat">
|
|
<FeaturedTemplates />
|
|
</section>
|
|
|
|
<section id="panduan">
|
|
<HowToSection />
|
|
</section>
|
|
|
|
<section id="keistimewaan">
|
|
<PrivilegeSection />
|
|
</section>
|
|
|
|
<section id="testimoni">
|
|
<TestimoniSection />
|
|
</section>
|
|
|
|
<Footer />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// Bagian script Anda sudah benar, tidak perlu diubah.
|
|
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';
|
|
import Footer from '~/components/landing-page/footer.vue';
|
|
import TestimoniSection from '~/components/landing-page/testimonisection.vue';
|
|
</script> |