fix: remove deal cloud (#2829)

This commit is contained in:
Johannes
2024-07-01 10:24:07 +02:00
committed by GitHub
parent 9da065e1ec
commit 205ddc88cb
3 changed files with 3 additions and 9 deletions

View File

@@ -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

View File

@@ -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",

View File

@@ -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}