Pricing
We have plans and prices is perfect for business owners. Its easy to edit and customize.
Pricing Table #1
Simple plans for everyone
Everything you need to design like a professional. Boost you and your team s creativity and supercharge your productivity with Geeks UI Pro.
Pay Monthly Pay Yearly
Free
$
20+ high quality design
Instant access to 2 icon library
24+ Free initial components
300+ beautiful design pages
Admin dashboard pages
Support 24/7 hours
Pro
$/y
120+ high quality design
Instant access to 2 icon library
24+ Free initial components
300+ beautiful design pages
Admin dashboard pages
Support 24/7 hours
// import node module librariesimport { Col, Row, Form, Container } from 'react-bootstrap';
// import widget/custom componentsimport { SimplePricingCard } from 'widgets';
// import hooksimport useToggle from 'hooks/useToggle';
// import data filesimport { free, pro } from 'data/landing-sass/SimplePricingPlansData';
export const Pricing1Example = () => { const [Pricing, togglePricing] = useToggle(true); return ( <Container> <Row> <Col xl={{ offset: 2, span: 8 }} lg={{ offset: 1, span: 10 }} md={12} xs={12} > <div className="mb-8 text-center"> <h2 className="display-4 mb-3 fw-bold"> Simple plans for everyone </h2> <p className="lead mb-4"> Everything you need to design like a professional. Boost you and your team s creativity and supercharge your productivity with Geeks UI Pro. </p> <div id="pricing-switch-second" className="d-flex justify-content-center align-items-center" > <span className="fs-4 fw-semi-bold me-2">Pay Monthly</span> <Form> <Form.Check name="radios" type="checkbox" className="form-switch form-switch-price" id="pricingSwitch" checked={Pricing} onChange={togglePricing} /> </Form> <span className="fs-4 fw-semi-bold ms-2"> Pay Yearly</span> </div> </div> <Row> <Col lg={6} md={6} xs={12}> <SimplePricingCard content={free} pricingMode={Pricing} /> </Col> <Col lg={6} md={6} xs={12}> <SimplePricingCard content={pro} pricingMode={Pricing} /> </Col> </Row> </Col> </Row> </Container> )}
Pricing Table #2
Simple pricing that scales with your business
Reference giving information on its origins, as well as a random Lipsum generator.
MonthlyYearly
Starter
To start your learning to day you will get only free Course access.
$/Yearly
All core features, including:
Only free courses
Free learning paths
5GB storage
Analytics
Free mobile app
Access to support forums
Individual
Access all premium courses, workshops, and mobile apps. Renewed monthly.
$/Yearly
Everything in Starter, plus:
Offline viewing
Offline projects
Unlimited storage
Custom domain support
Bulk editing
12 / 5 support
Team
Upto 10 member access everything. Save $78 per year! Renewed yearly.
$/Yearly
Everything in Individual, plus:
Workshop
Dedicated hardware
99.9% uptime guarantee
Advanced analytics
3rd party integrations
24 / 7 support
// import node module librariesimport React, { Fragment } from 'react';import { Col, Row, Container, Form } from 'react-bootstrap';
// import hooksimport useToggle from 'hooks/useToggle';
// import widget/custom componentsimport { PricingCard } from 'widgets';
// import data filesimport { starter, individual, team } from 'data/marketing/pricing/PricingPlansData';
export const Pricing2Example = () => { const [Pricing, togglePricing] = useToggle(true); return ( <Fragment> <section className="py-lg-13 py-8 bg-primary"> <Container> <Row className="align-items-center"> <Col xl={{ span: 8, offset: 2 }} lg={12} md={12} sm={12}> <div className="text-center mb-6 px-md-8"> <h1 className="text-white display-3 fw-bold"> Simple pricing that scales with your business </h1> <p className="text-white lead mb-4"> Reference giving information on its origins, as well as a random Lipsum generator. </p> <div id="pricing-switch" className="d-flex justify-content-center align-items-center" > <span className="text-white me-2">Monthly</span> <Form> <Form.Check name="radios" type="checkbox" id="pricingSwitch" className="form-switch form-switch-price" checked={Pricing} onChange={togglePricing} /> </Form> <span className="text-white ms-2">Yearly</span> </div> </div> </Col> </Row> </Container> </section>
<section className="mt-n8 pb-8"> <Container> <Row> <Col lg={4} md={12} sm={12}> <PricingCard content={starter} pricingMode={Pricing} /> </Col> <Col lg={4} md={12} sm={12}> <PricingCard content={individual} pricingMode={Pricing} /> </Col> <Col lg={4} md={12} sm={12}> <PricingCard content={team} pricingMode={Pricing} /> </Col> </Row> </Container> </section>
</Fragment> );}