Files
formbricks/apps/formbricks-com/pages/index.tsx
T
2023-01-30 11:23:47 +01:00

35 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Layout from "@/components/shared/Layout";
import Hero from "@/components/home/Hero";
import Features from "@/components/home/Features";
import Highlights from "@/components/home/Highlights";
import InsightOppos from "@/components/shared/InsightOppos";
import BreakerCTA from "@/components/shared/BreakerCTA";
const IndexPage = () => (
<Layout
title="Formbricks | Natively embedded user research for B2B SaaS"
description="Build qualitative user research into your product. Leverage Best practices to increase Product-Market Fit.">
<Hero />
<Features />
<BreakerCTA
teaser="Curious?"
headline="Get access now"
subheadline="Were onboarding design partners regularly. Sign up to get early access."
cta="Get access"
href="/waitlist"
/>
<Highlights />
<InsightOppos />
<BreakerCTA
teaser="Curious?"
headline="Get access now"
subheadline="Were onboarding design partners regularly. Sign up to get early access."
cta="Get access"
href="/waitlist"
inverted
/>
</Layout>
);
export default IndexPage;