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