Skip to content

Commit

Permalink
bug: fixed pricing
Browse files Browse the repository at this point in the history
  • Loading branch information
the-dezeray committed Oct 20, 2024
1 parent b1e933d commit a94bf25
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
16 changes: 7 additions & 9 deletions src/components/Pricing/Pricing.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,34 +47,32 @@ export default function Pricing() {
"for a single month ",
"1 Users",
"All module components",
"Lifetime access",

]}
buttonText="Get Started"
/>
<PricingItem
title="Semester"
price="1oo pula"
price="99 pula"
features={[
"the whole semester",
"All UI components",
"Lifetime access",
"Free updates",
"Use on 3 projects",
"6 Months support",
"3 Months support",
]}
buttonText="Get Pro"
isPopular={true}
/>
<PricingItem
title="Enterprise"
price="TBH"
title="2 users"
price="180 pula"
features={[
"unlimited users",
"all modules",
"Lifetime access",
"90 each",
"Free updates",
"Unlimited projects",
"12 Months support",
"3 months support",
]}
buttonText="Contact Us"
/>
Expand Down
11 changes: 6 additions & 5 deletions src/theme/PricingAndPayment.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const PricingAndPayment = () => {
>
<div className={styles.popularBadge}><FaStar /> Best Value</div>
<h3><FaSchool className={styles.optionIcon} /> Semester</h3>
<p className={styles.price}>100 <span>Pula</span></p>
<p className={styles.price}>99<span>Pula</span></p>
<ul className={styles.features}>
<li><FaCheck /> Full access</li>
<li><FaCheck /> Billed per semester</li>
Expand All @@ -142,20 +142,21 @@ const PricingAndPayment = () => {
<div className={styles.step}>
<div className={styles.stepNumber}>1</div>
<div className={styles.stepContent}>
<p>In the FNB app, select "Pay" then "Pay to Cell"</p>
<p>In the FNB app, "Pay to Cell"</p>
</div>
</div>
<div className={styles.step}>
<div className={styles.stepNumber}>2</div>
<div className={styles.stepContent}>
<p>Enter amount: <strong>{selectedPlan === 'monthly' ? '60' : '100'} Pula</strong></p>
<p>Enter amount: <strong>{selectedPlan === 'monthly' ? '60' : '99'} Pula</strong></p>
</div>
</div>
<div className={styles.step}>
<div className={styles.stepNumber}>3</div>
<div className={styles.stepContent}>
<p>Set reference: <strong>Your initials + Student ID</strong></p>
<p className={styles.example}>Example: RT2301904</p>
<p>Cell Number: <strong>71477276 </strong></p>

<p className={styles.example}>if it fails attempt ewallet</p>
</div>
</div>
<div className={styles.step}>
Expand Down

0 comments on commit a94bf25

Please sign in to comment.