From 857366114e2e6a498d996d0011260d6f28ea84c6 Mon Sep 17 00:00:00 2001 From: Sapana Dashoni Date: Tue, 21 Jan 2025 15:58:25 +0530 Subject: [PATCH] changes in pricing --- Frontend/src/Components/Pricing.jsx | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/Frontend/src/Components/Pricing.jsx b/Frontend/src/Components/Pricing.jsx index 6e12723..46a6788 100644 --- a/Frontend/src/Components/Pricing.jsx +++ b/Frontend/src/Components/Pricing.jsx @@ -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 (

ELITE EDGE FITNESS PLANS

@@ -38,16 +37,15 @@ const Pricing = () => {

Rs {element.price}

For {element.length} Months

-

Equipment

- All day free Training + All Day Fre Training

- Free restroom + Free Restroom

24/7 Skilled Support @@ -65,4 +63,4 @@ const Pricing = () => { ); }; -export default Pricing; +export default Pricing; \ No newline at end of file