Undangan/proyek-frontend/app/pages/index.vue
2025-09-01 09:41:06 +07:00

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>