Files
formbricks/apps/formbricks-com/pages/webhooks.tsx
T
Johannes fe04fe5c7f Seo tweaks (#137)
* responsiveness tweaks

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2022-11-10 11:36:45 +01:00

27 lines
1.0 KiB
TypeScript

import HeroTitle from "@/components/shared/HeroTitle";
import Layout from "@/components/shared/Layout";
import ImageWebhooks from "@/images/webhook-png.png";
import Image from "next/image";
import CTA from "../components/shared/CTA";
import FeatureHighlight from "@/components/shared/FeatureHighlight";
const WebhooksPage = () => (
<Layout
title="Webhooks"
description="Don't be limited by our choice of integrations, pipe your data exactly where you need it.">
<HeroTitle headingPt1="Webhooks" />
<FeatureHighlight
featureTitle="Versatile data handling"
text="Don't be limited by our choice of integrations, pipe your data exactly where you need it. Set up webhooks in our Form HQ with just a few clicks.
Don't miss any piece of information by sending partial submissions alongside complete ones."
img={<Image src={ImageWebhooks} alt="react library" className="rounded-lg" />}
isImgLeft
cta="Read docs"
href="/docs"
/>
<CTA />
</Layout>
);
export default WebhooksPage;