diff --git a/src/pages/Pro-Free-Subscribtion/ProFreeSubcription.js b/src/pages/Pro-Free-Subscribtion/ProFreeSubcription.js index 23e9cd6..4ca4604 100644 --- a/src/pages/Pro-Free-Subscribtion/ProFreeSubcription.js +++ b/src/pages/Pro-Free-Subscribtion/ProFreeSubcription.js @@ -1,46 +1,46 @@ +// ProFreeSubscription.js import React from 'react'; +import PropTypes from 'prop-types'; import PriceCard from '../../components/Common/Price Card/PriceCard'; -import "./ProFreeSubcription.css" -const ProFreeSubcription = () => { +import "./ProFreeSubscription.css"; +const pricingPlans = [ + { + title: 'Basic', + price: 'Free', + features: ['Portfolio insights (Limited Modules)', 'No subscription'], + }, + { + title: 'PRO', + price: '$13.99', + features: [ + 'Full Access', + 'Exchange, wallet & broker connections (Max. 2)', + 'Auto-refreshing prices', + 'Multi-device syncing (2 devices)', + 'Extended hours', + 'Insider moves', + 'Monochrome mode', + 'Exclusive early access', + ], + }, + { + title: 'Lifetime PRO', + price: '$499.99', + features: [ + 'Full Access', + 'Unlimited connections', + 'Auto-refreshing prices', + 'Multi-device syncing (Unlimited)', + 'Extended hours', + 'Insider moves', + 'Monochrome mode', + 'Exclusive early access', + ], + }, +]; - - const pricingPlans = [ - { - title: 'Basic', - price: 'Free', - features: ['Portfolio insights (Limited Modules)', 'No subscription'], - }, - { - title: 'PRO', - price: '$13.99', - features: [ - 'Full Access', - 'Exchange, wallet & broker connections (Max. 2)', - 'Auto-refreshing prices', - 'Multi-device syncing (2 devices)', - 'Extended hours', - 'Insider moves', - 'Monochrome mode', - 'Exclusive early access', - ], - }, - { - title: 'Lifetime PRO', - price: '$499.99', - features: [ - 'Full Access', - 'Unlimited connections', - 'Auto-refreshing prices', - 'Multi-device syncing (Unlimited)', - 'Extended hours', - 'Insider moves', - 'Monochrome mode', - 'Exclusive early access', - ], - }, - ]; - +const ProFreeSubscription = () => { return (