Skip to content

Commit

Permalink
changes in pricing
Browse files Browse the repository at this point in the history
  • Loading branch information
SapanaDashoni15 committed Jan 21, 2025
1 parent a08b39c commit 8573661
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions Frontend/src/Components/Pricing.jsx
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
import React from 'react';
import { Check } from 'lucide-react'; // Replace 'your-library' with the correct import
import { Link } from 'react-router-dom';
import { Check } from "lucide-react";
import React from "react";
import { Link } from "react-router-dom";

const Pricing = () => {
const pricing = [
{
imgUrl: "/pricing.jpg",
title: "QUARTERLY PLAN",
title: "QUARTERLY",
price: 18000,
length: 3
length: 3,
},
{
imgUrl: "/pricing.jpg",
title: "HALF YEARLY PLAN",
title: "HEAL_YEARLY",
price: 34000,
length: 6
length: 6,
},
{
imgUrl: "/pricing.jpg",
title: "YEARLY PLAN",
title: "YEARLY",
price: 67000,
length: 12
}
length: 12,
},
];

return (
<section className="pricing">
<h1>ELITE EDGE FITNESS PLANS</h1>
Expand All @@ -38,16 +37,15 @@ const Pricing = () => {
<h3>Rs {element.price}</h3>
<p>For {element.length} Months</p>
</div>

<div className="description">
<p>
<Check /> Equipment
</p>
<p>
<Check /> All day free Training
<Check /> All Day Fre Training
</p>
<p>
<Check /> Free restroom
<Check /> Free Restroom
</p>
<p>
<Check /> 24/7 Skilled Support
Expand All @@ -65,4 +63,4 @@ const Pricing = () => {
);
};

export default Pricing;
export default Pricing;

0 comments on commit 8573661

Please sign in to comment.