Files
kontextwerk/frontend/src/routes/StaticHomepage.svelte
2025-10-05 18:36:29 +00:00

13 lines
471 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 VoicebotPreview from "../lib/components/staticPageRows/VoicebotPreview.svelte"
</script>
<CoreSellingPoints />
<VoicebotPreview />
<ChatbotPreview />
<ContactFormRow />