Skip to content

Commit

Permalink
Add benefits list
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed May 5, 2024
1 parent 3b6533a commit 83b41a2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions client/pages/static/PricingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ const PricingSubHeader = styled.h2`
margin-bottom: 20px;
`;

const BenefitsList = styled.ul`
list-style-type: none;
padding: 0;
margin-bottom: 30px;
`;

const Benefit = styled.li`
font-size: 18px;
margin-bottom: 10px;
`;

const PricingCardContainer = styled.div`
display: flex;
flex-wrap: wrap;
Expand Down Expand Up @@ -95,6 +106,11 @@ export const PricingPage: React.FC = () => {
<PricingSubHeader>
Your Success is Our Success. Go Big by Choosing Pro
</PricingSubHeader>
<BenefitsList>
<Benefit>Anticipate risks and seize opportunities</Benefit>
<Benefit>Save time and boost productivity</Benefit>
<Benefit>Search with confidence and peace of mind</Benefit>
</BenefitsList>
<PricingCardContainer>
<PricingCard>
<PlanName>Free</PlanName>
Expand Down

0 comments on commit 83b41a2

Please sign in to comment.