Files
formbricks-formbricks/apps/formbricks-com/pages/index.tsx
T
2023-08-22 15:20:43 +02:00

50 lines
1.6 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 BreakerCTA from "@/components/shared/BreakerCTA";
import Steps from "@/components/home/Steps";
import Pricing from "@/components/shared/Pricing";
import GitHubSponsorship from "@/components/home/GitHubSponsorship";
import BestPractices from "@/components/shared/BestPractices";
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 />
<div className="hidden lg:block">
<GitHubSponsorship />
</div>
<BestPractices />
<Features />
<Highlights />
<div className="block lg:hidden">
<GitHubSponsorship />
</div>
<div className="hidden lg:block">
<BreakerCTA
teaser="READY?"
headline="Create surveys in minutes."
subheadline="Dont take our word for it, try it yourself."
cta="Create survey"
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
/>
<Pricing />
</Layout>
);
export default IndexPage;