mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 21:59:28 -05:00
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
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="We’re 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="We’re onboarding design partners regularly. Sign up to get early access."
|
||
cta="Get access"
|
||
href="/waitlist"
|
||
inverted
|
||
/>
|
||
</Layout>
|
||
);
|
||
|
||
export default IndexPage;
|