mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
fix: remove deal cloud (#2829)
This commit is contained in:
@@ -216,9 +216,6 @@ export const PricingTable = ({
|
||||
Yearly
|
||||
</div>
|
||||
</div>
|
||||
<div className="mb-4 flex w-fit items-center overflow-hidden rounded-lg border border-orange-200 bg-orange-50 px-3 py-1 text-orange-950 lg:mb-0">
|
||||
50% off for 6 months with PH50 - 24h only 🔥
|
||||
</div>
|
||||
</div>
|
||||
<div className="relative mx-auto grid max-w-md grid-cols-1 gap-y-8 lg:mx-0 lg:-mb-14 lg:max-w-none lg:grid-cols-4">
|
||||
<div
|
||||
|
||||
@@ -28,8 +28,7 @@ export const CLOUD_PRICING_DATA = {
|
||||
id: "startup",
|
||||
featured: false,
|
||||
description: "Everything in Free with additional features.",
|
||||
offer: true,
|
||||
price: { monthly: "€29", yearly: "€25" },
|
||||
price: { monthly: "€59", yearly: "€49" },
|
||||
mainFeatures: [
|
||||
"Everything in Free",
|
||||
"Remove Branding",
|
||||
@@ -44,8 +43,7 @@ export const CLOUD_PRICING_DATA = {
|
||||
id: "scale",
|
||||
featured: true,
|
||||
description: "Advanced features for scaling your business.",
|
||||
offer: true,
|
||||
price: { monthly: "€99", yearly: "€89" },
|
||||
price: { monthly: "€199", yearly: "€179" },
|
||||
mainFeatures: [
|
||||
"Everything in Startup",
|
||||
"Team Access Roles",
|
||||
|
||||
@@ -15,7 +15,6 @@ interface PricingCardProps {
|
||||
monthly: string;
|
||||
yearly: string;
|
||||
};
|
||||
offer?: boolean;
|
||||
mainFeatures: string[];
|
||||
href: string;
|
||||
};
|
||||
@@ -135,7 +134,7 @@ export const PricingCard = ({
|
||||
<div className="mt-2 flex items-center gap-x-4">
|
||||
<p
|
||||
className={cn(
|
||||
plan.offer ? "text-orange-600" : plan.featured ? "text-slate-900" : "text-slate-800",
|
||||
plan.featured ? "text-slate-900" : "text-slate-800",
|
||||
"text-4xl font-bold tracking-tight"
|
||||
)}>
|
||||
{planPeriod === "monthly" ? plan.price.monthly : plan.price.yearly}
|
||||
|
||||
Reference in New Issue
Block a user