Files
formbricks/apps/formbricks-com/pages/index.tsx
T
Shubham Palriwala 69293e2d1a chore: upgrade formbricks-com to latest deps (#1866)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-01-22 10:49:33 +00:00

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">&nbsp;</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;