diff --git a/apps/formbricks-com/images/form-hq.png b/apps/formbricks-com/images/form-hq.png new file mode 100644 index 0000000000..f337588428 Binary files /dev/null and b/apps/formbricks-com/images/form-hq.png differ diff --git a/apps/formbricks-com/pages/visual-builder.tsx b/apps/formbricks-com/pages/visual-builder.tsx new file mode 100644 index 0000000000..6f24aed634 --- /dev/null +++ b/apps/formbricks-com/pages/visual-builder.tsx @@ -0,0 +1,149 @@ +import HeroTitle from "@/components/shared/HeroTitle"; +import Layout from "@/components/shared/Layout"; +import TryItCTA from "../components/shared/TryItCTA"; +import Image from "next/image"; +import ImageEmail from "../images/email.svg"; +import HeadingCentered from "@/components/shared/HeadingCenetered"; +import FeatureHighlight from "@/components/shared/FeatureHighlight"; +import { CheckIcon, PlusIcon } from "@heroicons/react/24/outline"; + +const hereFeatures = [ + { + name: "Unlimited forms", + }, + { + name: "Unlimited submissions", + }, + { + name: "Multiple choice questions", + }, + { + name: "Free text questions", + }, + { + name: "Custom “ThankYou” Page", + }, + { + name: "Webhooks", + }, + { + name: "Email Notifications", + }, +]; + +const nextFeatures = [ + { + name: "20+ question types", + }, + { + name: "Integrations", + }, + { + name: "Granular data piping", + }, + { + name: "In-depth analytics", + }, +]; + +const soonFeatures = [ + { + name: "Survey Templates", + }, + { + name: "Form logic", + }, + { + name: "Hidden fields ", + }, + { + name: "A/B Test of wording", + }, +]; + +const FormHQPage = () => ( + + + + + Your browser does not support the video tag. + + } + isImgLeft + cta="coming soon" + href="#" + /> + } + /> + + +
+
+ {hereFeatures.map((feature) => ( +
+
+
+
+ ))} +
+
+ {nextFeatures.map((feature) => ( +
+
+
+

next

+
+

{feature.name}

+
+
+ ))} +
+
+ {soonFeatures.map((feature) => ( +
+
+
+

soon

+
+

{feature.name}

+
+
+ ))} + +
+
+
+
+
+ +
+); + +export default FormHQPage; diff --git a/apps/formbricks-com/public/videos/thumbnail-visual-form-builder.png b/apps/formbricks-com/public/videos/thumbnail-visual-form-builder.png new file mode 100644 index 0000000000..b2e43b390c Binary files /dev/null and b/apps/formbricks-com/public/videos/thumbnail-visual-form-builder.png differ diff --git a/apps/formbricks-com/public/videos/visual-builder-vid.mp4 b/apps/formbricks-com/public/videos/visual-builder-vid.mp4 new file mode 100644 index 0000000000..82e9789c40 Binary files /dev/null and b/apps/formbricks-com/public/videos/visual-builder-vid.mp4 differ