17 lines
670 B
Svelte
17 lines
670 B
Svelte
<script lang="ts">
|
|
import ChatbotPreview from "../lib/components/staticPageRows/ChatbotPreview.svelte"
|
|
import ContactFormRow from "../lib/components/staticPageRows/ContactFormRow.svelte"
|
|
import CoreSellingPoints from "../lib/components/staticPageRows/CoreSellingPoints.svelte"
|
|
import FAQSection from "../lib/components/staticPageRows/FAQSection.svelte"
|
|
import VoicebotPreview from "../lib/components/staticPageRows/VoicebotPreview.svelte"
|
|
import OfferPackages from "../lib/components/staticPageRows/OfferPackages.svelte"
|
|
</script>
|
|
|
|
<CoreSellingPoints />
|
|
|
|
<VoicebotPreview />
|
|
<ChatbotPreview />
|
|
<FAQSection />
|
|
<OfferPackages />
|
|
<ContactFormRow />
|