mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-23 13:48:58 -05:00
69293e2d1a
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import Faq from "@/components/home/Faq";
|
|
import Features from "@/components/home/Features";
|
|
import Hero from "@/components/home/Hero";
|
|
import Highlights from "@/components/home/Highlights";
|
|
import ScrollToTopButton from "@/components/home/ScrollToTop";
|
|
import Steps from "@/components/home/Steps";
|
|
import BestPractices from "@/components/shared/BestPractices";
|
|
import BreakerCTA from "@/components/shared/BreakerCTA";
|
|
import Layout from "@/components/shared/Layout";
|
|
|
|
const IndexPage = () => (
|
|
<Layout
|
|
title="Formbricks | Privacy-first Experience Management"
|
|
description="Build qualitative user research into your product. Leverage Best practices to increase Product-Market Fit.">
|
|
<Hero />
|
|
<BestPractices />
|
|
<Features />
|
|
<Highlights />
|
|
<ScrollToTopButton />
|
|
{/* <div className="block lg:hidden">
|
|
<GitHubSponsorship />
|
|
</div> */}
|
|
<div className="hidden lg:block">
|
|
<BreakerCTA
|
|
teaser="READY?"
|
|
headline="Get started in minutes."
|
|
subheadline="Dive right in, no credit card required."
|
|
cta="Get started"
|
|
href="https://app.formbricks.com/auth/signup"
|
|
/>
|
|
</div>
|
|
<div className="pb-16"> </div>
|
|
<Steps />
|
|
|
|
<BreakerCTA
|
|
teaser="Curious?"
|
|
headline="Give it a squeeze 🍋"
|
|
subheadline="All 'Pro' features are free on Formbricks. Give it a go!"
|
|
cta="Start for free"
|
|
href="https://app.formbricks.com/auth/signup"
|
|
inverted
|
|
/>
|
|
|
|
<Faq />
|
|
</Layout>
|
|
);
|
|
|
|
export default IndexPage;
|