diff --git a/apps/web/app/(app)/(onboarding)/lib/utils.ts b/apps/web/app/(app)/(onboarding)/lib/utils.ts
index e82a587c42..5c1c975bca 100644
--- a/apps/web/app/(app)/(onboarding)/lib/utils.ts
+++ b/apps/web/app/(app)/(onboarding)/lib/utils.ts
@@ -4,8 +4,10 @@ export const getCustomHeadline = (channel: TProductConfigChannel, industry: TPro
const combinations = {
"website+eCommerce": "web shop",
"website+saas": "landing page",
+ "website+other": "website",
"app+eCommerce": "shopping app",
"app+saas": "SaaS app",
+ "app+other": "app",
};
- return combinations[`${channel}+${industry}`] || "app";
+ return combinations[`${channel}+${industry}`] || "product";
};
diff --git a/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/channel/page.tsx b/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/channel/page.tsx
index 01d79c1eea..ed783c4cce 100644
--- a/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/channel/page.tsx
+++ b/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/channel/page.tsx
@@ -1,5 +1,5 @@
import { OnboardingOptionsContainer } from "@/app/(app)/(onboarding)/organizations/components/OnboardingOptionsContainer";
-import { CircleUserRoundIcon, EarthIcon, SendHorizonalIcon, XIcon } from "lucide-react";
+import { CircleUserRoundIcon, EarthIcon, LinkIcon, XIcon } from "lucide-react";
import { getProducts } from "@formbricks/lib/product/service";
import { Button } from "@formbricks/ui/Button";
import { Header } from "@formbricks/ui/Header";
@@ -14,24 +14,24 @@ const Page = async ({ params }: ChannelPageProps) => {
const channelOptions = [
{
title: "Public website",
- description: "Display surveys on public websites, well timed and targeted.",
+ description: "Run well-timed pop-up surveys.",
icon: EarthIcon,
iconText: "Built for scale",
href: `/organizations/${params.organizationId}/products/new/industry?channel=website`,
},
{
title: "App with sign up",
- description: "Run highly targeted surveys with any user cohort.",
+ description: "Run highly-targeted micro-surveys.",
icon: CircleUserRoundIcon,
iconText: "Enrich user profiles",
href: `/organizations/${params.organizationId}/products/new/industry?channel=app`,
},
{
channel: "link",
- title: "Anywhere online",
- description: "Create link and email surveys, reach your people anywhere.",
- icon: SendHorizonalIcon,
- iconText: "100% custom branding",
+ title: "Link & email surveys",
+ description: "Reach people anywhere online.",
+ icon: LinkIcon,
+ iconText: "Anywhere online",
href: `/organizations/${params.organizationId}/products/new/industry?channel=link`,
},
];
@@ -42,7 +42,7 @@ const Page = async ({ params }: ChannelPageProps) => {
{products.length >= 1 && (
diff --git a/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/industry/page.tsx b/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/industry/page.tsx
index 87d21d5d89..29f927b35b 100644
--- a/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/industry/page.tsx
+++ b/apps/web/app/(app)/(onboarding)/organizations/[organizationId]/products/new/industry/page.tsx
@@ -1,7 +1,6 @@
import { OnboardingOptionsContainer } from "@/app/(app)/(onboarding)/organizations/components/OnboardingOptionsContainer";
import { HeartIcon, MonitorIcon, ShoppingCart, XIcon } from "lucide-react";
import { notFound } from "next/navigation";
-import { IS_FORMBRICKS_CLOUD } from "@formbricks/lib/constants";
import { getProducts } from "@formbricks/lib/product/service";
import { TProductConfigChannel } from "@formbricks/types/product";
import { Button } from "@formbricks/ui/Button";
@@ -27,32 +26,33 @@ const Page = async ({ params, searchParams }: IndustryPageProps) => {
const industryOptions = [
{
title: "E-Commerce",
- description: "Implement proven best practices to understand why people buy.",
+ description: "Understand why people buy.",
icon: ShoppingCart,
iconText: "B2B and B2C",
href: `/organizations/${params.organizationId}/products/new/settings?channel=${channel}&industry=eCommerce`,
},
{
title: "SaaS",
- description: "Gather contextualized feedback to improve product-market fit.",
+ description: "Improve product-market fit.",
icon: MonitorIcon,
iconText: "Proven methods",
href: `/organizations/${params.organizationId}/products/new/settings?channel=${channel}&industry=saas`,
},
{
title: "Other",
- description: "Universal Formbricks experience with features for every industry.",
+ description: "Listen to your customers.",
icon: HeartIcon,
iconText: "Customer insights",
- href: IS_FORMBRICKS_CLOUD
- ? `/organizations/${params.organizationId}/products/new/survey?channel=${channel}&industry=other`
- : `/organizations/${params.organizationId}/products/new/settings?channel=${channel}&industry=other`,
+ href: `/organizations/${params.organizationId}/products/new/settings?channel=${channel}&industry=other`,
},
];
return (
-
+
{products.length >= 1 && (