From dd43a55e2051f623f4c2483185464e1761de85be Mon Sep 17 00:00:00 2001 From: Johannes Date: Thu, 17 Aug 2023 16:57:40 +0200 Subject: [PATCH] remove unfinished template subpage --- .../product-market-fit-survey/index.tsx | 49 ------------------- 1 file changed, 49 deletions(-) delete mode 100644 apps/formbricks-com/pages/templates/product-market-fit-survey/index.tsx diff --git a/apps/formbricks-com/pages/templates/product-market-fit-survey/index.tsx b/apps/formbricks-com/pages/templates/product-market-fit-survey/index.tsx deleted file mode 100644 index 38e5ea52be..0000000000 --- a/apps/formbricks-com/pages/templates/product-market-fit-survey/index.tsx +++ /dev/null @@ -1,49 +0,0 @@ -import DemoPreview from "@/components/dummyUI/DemoPreview"; -import BestPracticeNavigation from "@/components/shared/BestPracticeNavigation"; -import Layout from "@/components/shared/Layout"; -import UseCaseHeader from "@/components/shared/UseCaseHeader"; -import { useEffect } from "react"; - -export default function OnboardingSegmentationPage() { - useEffect(() => { - fetch("http://localhost:1337/api/templates") - .then((response) => response.json()) - .then((data) => console.log(data)) - .catch((error) => console.error("An error occurred:", error)); - }, []); - - return ( - -
-
- -

- Why is it useful? -

-

- In your Onboarding you likely want to ask two or three questions to be able to segment your users - best. These attributes can be used to create cohorts and survey users down the line. You can - identify who uses your product most and use Formbricks to gather relevant qualitative data on - scale. -

-

- How to get started: -

-

- Onboardings are unique to every product. Formbricks does not help you build the right onboarding. - Currently, you can use the Formbricks API to send survey data to Formbricks for later usage. Down - the line, we might offer a simple way to add survey questions to your Onboarding. -

-
- - -
-

- Other Best Practices -

- -
- ); -}