-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62dd635
commit 43fe357
Showing
4 changed files
with
115 additions
and
43 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import React from 'react'; | ||
import './Pricing.css'; // Create a CSS file to style the pricing page | ||
|
||
const Pricing = () => { | ||
return ( | ||
<div className="pricing-container"> | ||
<h1 className="pricing-title">Our Pricing Plans</h1> | ||
|
||
<div className="pricing-plans"> | ||
{/* Basic Plan */} | ||
<div className="pricing-card"> | ||
<h2 className="plan-title">Basic</h2> | ||
<p className="plan-price">$9.99/month</p> | ||
<ul className="plan-features"> | ||
<li>Feature 1</li> | ||
<li>Feature 2</li> | ||
<li>Feature 3</li> | ||
</ul> | ||
<button className="plan-button">Get Started</button> | ||
</div> | ||
|
||
{/* Standard Plan */} | ||
<div className="pricing-card"> | ||
<h2 className="plan-title">Standard</h2> | ||
<p className="plan-price">$19.99/month</p> | ||
<ul className="plan-features"> | ||
<li>Feature 1</li> | ||
<li>Feature 2</li> | ||
<li>Feature 3</li> | ||
<li>Feature 4</li> | ||
</ul> | ||
<button className="plan-button">Get Started</button> | ||
</div> | ||
|
||
{/* Premium Plan */} | ||
<div className="pricing-card"> | ||
<h2 className="plan-title">Premium</h2> | ||
<p className="plan-price">$29.99/month</p> | ||
<ul className="plan-features"> | ||
<li>Feature 1</li> | ||
<li>Feature 2</li> | ||
<li>Feature 3</li> | ||
<li>Feature 4</li> | ||
<li>Feature 5</li> | ||
</ul> | ||
<button className="plan-button">Get Started</button> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Pricing; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
.pricing-container { | ||
text-align: center; | ||
padding: 50px; | ||
} | ||
|
||
.pricing-title { | ||
font-size: 2.5rem; | ||
margin-bottom: 30px; | ||
} | ||
|
||
.pricing-plans { | ||
display: flex; | ||
justify-content: center; | ||
gap: 20px; | ||
} | ||
|
||
.pricing-card { | ||
background-color: #f5f5f5; | ||
padding: 20px; | ||
border-radius: 8px; | ||
width: 300px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.plan-title { | ||
font-size: 1.5rem; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.plan-price { | ||
font-size: 2rem; | ||
color: #007bff; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.plan-features { | ||
list-style: none; | ||
padding: 0; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.plan-features li { | ||
margin: 10px 0; | ||
} | ||
|
||
.plan-button { | ||
background-color: #007bff; | ||
color: #fff; | ||
border: none; | ||
padding: 10px 20px; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
|
||
.plan-button:hover { | ||
background-color: #0056b3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters