2020-11-16 08:48:20 -08:00
|
|
|
import React, { Component } from 'react';
|
2020-12-06 08:59:40 -08:00
|
|
|
import '../pricing-plan.css';
|
2020-11-21 09:27:17 -08:00
|
|
|
import NavBar from './NavBar';
|
2020-12-16 07:31:17 -08:00
|
|
|
import Footer from './Footer';
|
2021-02-27 09:25:16 -08:00
|
|
|
import styles from 'styled-components';
|
|
|
|
|
|
|
|
const WhiteContainer = styled.div`
|
|
|
|
background: white;
|
|
|
|
|
|
|
|
`;
|
|
|
|
const PricingPlanContainer = styled.div`
|
|
|
|
|
|
|
|
display:flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 10px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const PricingPlan = styled.section`
|
|
|
|
|
|
|
|
background: white;
|
|
|
|
width:300px;
|
|
|
|
border-radius: 25px;
|
|
|
|
box-shadow: 0 0 5px rgba(0,0,0,0.2);
|
|
|
|
overflow: hidden;
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5;
|
|
|
|
color: #555555;
|
|
|
|
margin: 15px;
|
|
|
|
|
|
|
|
&:hover &:active {
|
|
|
|
box-shadow: 0 0 15px rgba(0,0,0,0.4);
|
|
|
|
transform: scale(1.05);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
const Text = styled.p`
|
|
|
|
font-size: 0.9em;
|
|
|
|
text-align: center;
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
`;
|
|
|
|
const Currency = styled.p`
|
|
|
|
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 2em;
|
|
|
|
color:#000000;
|
|
|
|
|
|
|
|
|
|
|
|
`;
|
|
|
|
const Title = styled.h1`
|
|
|
|
font-size:1.5em;
|
|
|
|
font-weight: 400;
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
|
const Header = styled.div`
|
|
|
|
|
|
|
|
padding:25px;
|
|
|
|
background: #009578;
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
|
|
`;
|
2021-02-28 09:51:28 -08:00
|
|
|
const Summary = styled.h2`
|
2021-02-27 09:25:16 -08:00
|
|
|
|
2021-02-28 09:51:28 -08:00
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 300;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const SpecialText = styled.div`
|
2021-02-27 09:25:16 -08:00
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #ffffff;
|
|
|
|
background: #007c64;
|
|
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.2) inset;
|
2021-02-28 09:51:28 -08:00
|
|
|
|
|
|
|
&, ${Title}{
|
|
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
`;
|
2021-02-28 23:44:52 -08:00
|
|
|
const Description = styled.div`
|
2021-02-27 09:25:16 -08:00
|
|
|
|
2021-02-28 09:51:28 -08:00
|
|
|
padding: 25px;
|
|
|
|
|
|
|
|
`;
|
|
|
|
const List = styled.ul `
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
2021-02-27 09:25:16 -08:00
|
|
|
`;
|
2021-02-28 23:44:52 -08:00
|
|
|
const Feature = styled.li`
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 25px;
|
|
|
|
position: relative;
|
|
|
|
font-size: 0.9em;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "\2714";
|
|
|
|
color: #009578;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
`;
|
|
|
|
const Actions = styled.div`
|
|
|
|
|
|
|
|
padding: 25px;
|
|
|
|
border-top: 1px solid #eeeeee;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
`;
|
|
|
|
const Button = styled.a`
|
|
|
|
|
|
|
|
display: inline-block;
|
|
|
|
margin: 15px auto;
|
|
|
|
padding: 8px 20px;
|
|
|
|
color: #009578;
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid #009578;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 0.02em;
|
|
|
|
text-decoration: none !important;
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
|
|
|
background: #009578;
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
|
|
}
|
2021-02-27 09:25:16 -08:00
|
|
|
|
2021-02-28 23:44:52 -08:00
|
|
|
|
|
|
|
`;
|
2020-11-16 08:48:20 -08:00
|
|
|
class PricingPlan extends Component {
|
|
|
|
|
|
|
|
render(){
|
|
|
|
return(
|
|
|
|
<div className="body">
|
2020-11-21 09:27:17 -08:00
|
|
|
<NavBar />
|
2020-11-23 08:49:49 -08:00
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
<br />
|
2021-02-27 09:25:16 -08:00
|
|
|
<h1 style={{'color':'#66bfbf','margin-left':'20px'}}>Pricing Plan</h1>
|
2021-02-28 23:44:52 -08:00
|
|
|
<WhiteContainer>
|
2020-11-17 06:21:06 -08:00
|
|
|
|
2021-02-28 23:44:52 -08:00
|
|
|
<PricingPlan>
|
|
|
|
<Header>
|
|
|
|
<Title>Basic Package</Title>
|
|
|
|
<Summary>For those getting started</Summary>
|
2020-11-16 08:48:20 -08:00
|
|
|
|
2021-02-28 23:44:52 -08:00
|
|
|
</Header>
|
|
|
|
<Description>
|
2020-11-17 06:21:06 -08:00
|
|
|
<ul class='pricing-plan__list'>
|
|
|
|
<li class='pricing-plan__feature'>Feature #1</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #2</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #3</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #4</li>
|
|
|
|
</ul>
|
2021-02-28 23:44:52 -08:00
|
|
|
</Description>
|
2020-11-17 06:21:06 -08:00
|
|
|
< div class='pricing-plan__actions'>
|
|
|
|
<p class='pricing-plan__cost'>$10</p>
|
|
|
|
<p class='pricing-plan__text'>per month</p>
|
|
|
|
<p class='pricing-plan__text'>Minimum spend over 12 months</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class='pricing-plan pricing-plan--highlighted'>
|
|
|
|
<div class='pricing-plan__special-text'>Recommended</div>
|
|
|
|
<div class='pricing-plan__header'>
|
|
|
|
<h1 class='pricing-plan__title'>Intermediate Package</h1>
|
|
|
|
<h2 class='pricing-plan__summary'>For those getting started</h2>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class='pricing-plan__desc'>
|
|
|
|
<ul class='pricing-plan__list'>
|
|
|
|
<li class='pricing-plan__feature'>Feature #1</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #2</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #3</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #4</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
< div class='pricing-plan__actions'>
|
|
|
|
<p class='pricing-plan__cost'>$50</p>
|
|
|
|
<p class='pricing-plan__text'>per month</p>
|
|
|
|
<p class='pricing-plan__text'>Minimum spend over 12 months</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section class='pricing-plan '>
|
|
|
|
<div class='pricing-plan__header'>
|
|
|
|
<h1 class='pricing-plan__title'>Luxury Package</h1>
|
|
|
|
<h2 class='pricing-plan__summary'>For those getting started</h2>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class='pricing-plan__desc'>
|
|
|
|
<ul class='pricing-plan__list'>
|
|
|
|
<li class='pricing-plan__feature'>Feature #1</li>
|
|
|
|
<li class='pricing-plan__feature'>Feature #2</li>
|
2021-02-27 09:25:16 -08:00
|
|
|
<li class='pricing-plan__feature'>Serv</li>
|
|
|
|
<li class='pricing-plan__feature'>Feng shu consultancy free</li>
|
2020-11-17 06:21:06 -08:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
< div class='pricing-plan__actions'>
|
|
|
|
<p class='pricing-plan__cost'>$100</p>
|
|
|
|
<p class='pricing-plan__text'>per month</p>
|
|
|
|
<p class='pricing-plan__text'>Minimum spend over 12 months</p>
|
|
|
|
|
2020-11-16 08:48:20 -08:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2020-11-17 06:21:06 -08:00
|
|
|
|
|
|
|
</div>
|
2020-12-10 04:29:50 -08:00
|
|
|
<a href='./' class='pricing-plan__button'>Purchase</a>
|
2020-12-16 07:31:17 -08:00
|
|
|
<Footer />
|
2020-11-17 06:21:06 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-16 08:48:20 -08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
export default PricingPlan;
|