This commit is contained in:
gpt-engineer-app[bot]
2026-01-28 13:32:04 +00:00
parent 0a60852e2b
commit 030e425c39
+3 -3
View File
@@ -117,7 +117,7 @@ const PlansSection = () => {
{planDetails.map((plan, index) => ( {planDetails.map((plan, index) => (
<div <div
key={index} key={index}
className={`relative bg-card p-3 md:p-8 card-classic rounded-sm ${ className={`relative bg-card p-3 md:p-8 card-classic rounded-sm flex flex-col ${
plan.isPremium plan.isPremium
? 'ring-2 ring-amber-500 shadow-[0_0_20px_rgba(217,164,32,0.3)]' ? 'ring-2 ring-amber-500 shadow-[0_0_20px_rgba(217,164,32,0.3)]'
: '' : ''
@@ -148,7 +148,7 @@ const PlansSection = () => {
</div> </div>
{/* Features - hidden on mobile */} {/* Features - hidden on mobile */}
<ul className="hidden md:block space-y-3 mb-8"> <ul className="hidden md:block space-y-3 mb-8 flex-grow">
{plan.features.map((feature, i) => ( {plan.features.map((feature, i) => (
<li key={i} className="flex items-start gap-3"> <li key={i} className="flex items-start gap-3">
<Check className="w-4 h-4 text-primary mt-1 flex-shrink-0" /> <Check className="w-4 h-4 text-primary mt-1 flex-shrink-0" />
@@ -157,7 +157,7 @@ const PlansSection = () => {
))} ))}
</ul> </ul>
{/* CTA Button */} {/* CTA Button - always at bottom */}
<button <button
onClick={() => handleSelectPlan(plan)} onClick={() => handleSelectPlan(plan)}
disabled={isLoading} disabled={isLoading}