From 74762be45cf44ba17dace39b3f3b5e3c0227d225 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:54:39 +0000 Subject: [PATCH] Seed: saas template (34 files) --- src/pages/Pricing.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/Pricing.tsx b/src/pages/Pricing.tsx index ae5fd7e..7615913 100644 --- a/src/pages/Pricing.tsx +++ b/src/pages/Pricing.tsx @@ -106,7 +106,7 @@ export default function PricingPage() {
{tiers.map((tier) => ( - + {tier.popular && (
Most Popular @@ -116,11 +116,11 @@ export default function PricingPage() { {tier.name}

{tier.description}

- \${billing === "monthly" ? tier.monthlyPrice : tier.annualPrice} + ${billing === "monthly" ? tier.monthlyPrice : tier.annualPrice} /mo
{billing === "annual" && ( -

Billed annually (\${tier.annualPrice * 12}/yr)

+

Billed annually (${tier.annualPrice * 12}/yr)

)} @@ -133,11 +133,11 @@ export default function PricingPage() { ))} {tier.name === "Enterprise" ? ( - ) : ( - )} @@ -192,7 +192,7 @@ export default function PricingPage() {

Frequently Asked Questions

{faqs.map((faq, i) => ( - + {faq.q} {faq.a}