import React, { Component } from 'react'; import NavBar from './NavBar'; import Footer from './Footer'; import styled from 'styled-components'; const size = { mobileS: '320px', mobileM: '375px', mobileL: '425px', tablet: '768px', laptop: '1024px', laptopL: '1440px', desktop: '2560px' } export const Device = { mobileS: `(min-width: ${size.mobileS})`, mobileM: `(min-width: ${size.mobileM})`, mobileL: `(min-width: ${size.mobileL})`, tablet: `(min-width: ${size.tablet})`, laptop: `(min-width: ${size.laptop})`, laptopL: `(min-width: ${size.laptopL})`, desktop: `(min-width: ${size.desktop})`, desktopL: `(min-width: ${size.desktop})` }; const WhiteContainer = styled.div` background: white; `; const PricingPlanContainer = styled.div` display:flex; align-items: center; justify-content: center; padding: 10px; flex-direction: column; @media ${Device.laptop} { flex-direction: row; } `; const Pricing = 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 { 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; `; const Summary = styled.h2` font-size: 1em; font-weight: 300; `; const SpecialText = styled.div` padding: 10px; text-align: center; font-weight: bold; color: #ffffff; background: #007c64; box-shadow: 0 0 10px rgba(0,0,0,0.2) inset; &, ${Title}{ margin: 0; text-align: center; font-family: sans-serif; } `; const Description = styled.div` display:block; padding: 25px; `; const List = styled.ul` padding: 0; margin: 0; text-align: left; `; const Feature = styled.li` margin: 0 0 25px 0; padding-left: 25px; position: relative; font-size: 0.9 em; &:not(:last-child) { margin-bottom: 2em; } &::before { content: "✓ "; color: green; } `; 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; font-weight: bold; text-align: center; &:hover { background: #009578; color: white !important; } `; class PricingPlan extends Component { render() { return (



Pricing Plan

Basic Package For those getting started
Feature #1 Feature #2 Feature #3 Feature #4 $10 per month Minimum sped over 12 months
Recommended
Intermediate Package For those getting started
Feature #1 Feature #2 Feature #3 Feature #4 $50 per month Minimum spend over 12 months
Luxury Package For those getting started
Feature #1 Feature #2 Feature #3 Feature #4 $100 per month Minimum spend over 12 months
) } } export default PricingPlan;