Skip to content

Commit 455e995

Browse files
refactor: Update Benefits and Pricing sections with improved descriptions and layout adjustments
1 parent 4f81182 commit 455e995

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

components/DashboardV2/BenefitsSection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const benefitList: BenefitsProps[] = [
3737

3838
export const BenefitsSection = () => {
3939
return (
40-
<section id="benefits" className="container mx-auto px-3 py-24 sm:py-32">
40+
<section id="benefits" className="container mx-auto px-24 py-24 sm:py-32">
4141
<div className="grid lg:grid-cols-2 place-items-center lg:gap-24">
4242
<div>
4343
<h2 className="text-lg text-primary mb-2 tracking-wider">Benefits</h2>

components/DashboardV2/PricingSection.tsx

+9-12
Original file line numberDiff line numberDiff line change
@@ -29,51 +29,48 @@ const plans: PlanProps[] = [
2929
popular: 0,
3030
price: 0,
3131
description:
32-
"Lorem ipsum dolor sit, amet ipsum consectetur adipisicing elit.",
32+
"Starter pack for personal use. Get started with the basics.",
3333
buttonText: "Start Free Trial",
3434
benefitList: [
3535
"1 team member",
36-
"1 GB storage",
3736
"Upto 2 pages",
3837
"Community support",
39-
"AI assistance",
38+
"Dashboard access",
4039
],
4140
},
4241
{
4342
title: "Premium",
4443
popular: 1,
4544
price: 45,
4645
description:
47-
"Lorem ipsum dolor sit, amet ipsum consectetur adipisicing elit.",
46+
"45$ per month for all basic feature access and DSA sheets access.",
4847
buttonText: "Get starterd",
4948
benefitList: [
5049
"4 team member",
51-
"8 GB storage",
5250
"Upto 6 pages",
53-
"Priority support",
54-
"AI assistance",
51+
"Dashboard access",
52+
"DSA sheets access",
5553
],
5654
},
5755
{
5856
title: "Enterprise",
5957
popular: 0,
6058
price: 120,
6159
description:
62-
"Lorem ipsum dolor sit, amet ipsum consectetur adipisicing elit.",
60+
"120$ per month for access to all features and benefits.",
6361
buttonText: "Contact US",
6462
benefitList: [
6563
"10 team member",
66-
"20 GB storage",
6764
"Upto 10 pages",
68-
"Phone & email support",
65+
"Dashboard + DSA access",
6966
"AI assistance",
7067
],
7168
},
7269
];
7370

7471
export const PricingSection = () => {
7572
return (
76-
<section className="container px-3 mx-auto py-24 sm:py-32">
73+
<section className="container px-24 mx-auto py-24 sm:py-32">
7774
<h2 className="text-lg text-primary text-center mb-2 tracking-wider">
7875
Pricing
7976
</h2>
@@ -83,7 +80,7 @@ export const PricingSection = () => {
8380
</h2>
8481

8582
<h3 className="md:w-1/2 mx-auto text-xl text-center text-muted-foreground pb-14">
86-
Lorem ipsum dolor sit amet consectetur adipisicing reiciendis.
83+
Start at full Speed!
8784
</h3>
8885

8986
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8 lg:gap-4">

0 commit comments

Comments
 (0)