Skip to content

Commit

Permalink
Merge pull request #291 from mohangolakoti/enhancements
Browse files Browse the repository at this point in the history
back navigation button added to pricing page #227
  • Loading branch information
SUGAM-ARORA authored Jun 18, 2024
2 parents ebe7c66 + 71ba2b6 commit 7d29b0b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Readmore.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Readmore = () => {
const feature = features.find((item) => item.id === parseInt(id));
return (
<div className='readmore'>
<Link className='arrow' to="/"><img src={Arrow} alt="" /></Link>
<Link className='arrow' to="/"><img src={Arrow} alt="back" /></Link>
<div className="title">{feature.title}</div>
<div className="image">
<img src={feature.img} height={480} alt={feature.title} />
Expand Down
11 changes: 10 additions & 1 deletion src/Components/footer_section/Pricing/pricing.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,21 @@ body {
}

.header {
margin: auto;
margin: auto;
padding: 20px;
opacity: 0;
position: relative;
animation: fadeIn 1.5s ease-in-out forwards;
}

.arrow{
position: fixed;
top: 0;
left: 0;
padding: 20px;
width: 90px;
}

.headingHeader {
text-align: center;
font-size: 4vw;
Expand Down
3 changes: 3 additions & 0 deletions src/Components/footer_section/Pricing/pricing.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
// pricing.js
import React from "react";
import './pricing.css';
import Arrow from '../../projects/arrow.png'
import { Link } from "react-router-dom";

function Pricing() {
return (
<div className="pricing">
<div className="header">
<Link className='arrow' to="/"><img src={Arrow} alt="back" /></Link>
<div className="headingHeader">Start your 7 day free trial today</div>
<div className="description">Unlock Advanced Features and Maximize Your Potential with UniCollab Pro.</div>
</div>
Expand Down

0 comments on commit 7d29b0b

Please sign in to comment.