mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-16 19:15:05 -05:00
zapier subpage
This commit is contained in:
@@ -17,7 +17,7 @@ const IntegrationPageTitle: React.FC<IntegrationPageTitleProps> = ({ title, icon
|
||||
|
||||
<div className="my-4 flex items-baseline">
|
||||
{icon && <div className="h-6 w-6">{icon}</div>}
|
||||
<h1 className="ml-3 text-2xl font-bold text-slate-600">{title}</h1>
|
||||
<h1 className="ml-3 text-2xl font-bold text-slate-800">{title}</h1>
|
||||
</div>
|
||||
</div>
|
||||
{/* <div className="flex items-center space-x-2">
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { Card } from "@formbricks/ui";
|
||||
import Image from "next/image";
|
||||
import JsLogo from "@/images/jslogo.png";
|
||||
import ZapierLogo from "@/images/zapier-small.png";
|
||||
|
||||
export default function IntegrationsPage({ params }) {
|
||||
return (
|
||||
@@ -14,6 +15,12 @@ export default function IntegrationsPage({ params }) {
|
||||
description="Integrate Formbricks into your Webapp"
|
||||
icon={<Image src={JsLogo} alt="Javascript Logo" />}
|
||||
/>
|
||||
<Card
|
||||
href={`/environments/${params.environmentId}/integrations/zapier`}
|
||||
title="Zapier"
|
||||
description="Integrate Formbricks with 5000+ apps via Zapier"
|
||||
icon={<Image src={ZapierLogo} alt="Zapier Logo" />}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
import ZapierLogo from "@/images/zapier-small.png";
|
||||
import Image from "next/image";
|
||||
import IntegrationPageTitle from "../IntegrationsPageTitle";
|
||||
|
||||
export default function JsIntegrationPage({ params }) {
|
||||
return (
|
||||
<div>
|
||||
<IntegrationPageTitle
|
||||
environmentId={params.environmentId}
|
||||
title="Zapier Integration"
|
||||
icon={<Image src={ZapierLogo} alt="Zapier Logo" />}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
BIN
apps/web/images/zapier-small.png
Normal file
BIN
apps/web/images/zapier-small.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
Reference in New Issue
Block a user