Files
kontextwerk/frontend/src/routes/StaticHomepage.svelte
2025-10-06 17:01:41 +00:00

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 />