Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Back To Home Button" in "Legal and Missing" Pages #369

Merged
merged 5 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/Components/Careers/CareersPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,22 @@ import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faSearch, faRocket, faHeart } from '@fortawesome/free-solid-svg-icons';
import './careers.css'
import homeIcon from '../../img/homeicon.png';
import { Link } from 'react-router-dom';


const careers = () => {
const handleResume = () => {
var link = "mailto:abc@unicollab.com"
window.location.href = link;
}
return (
<>
<Link to="/">
<img src={homeIcon} alt="Home" className="home-icon" />
</Link>
<div className='body'>

<div className="container1Careers">
<div className="headingCareers1">Let's build from here, together</div>
<div className='descriptionCareers1'>Join our team and accelerate human progress through innovative developer collaboration.</div>
Expand Down Expand Up @@ -156,6 +164,7 @@ const careers = () => {
</div>
<button className='submitCareers' onClick={handleResume}>Send Your Job-Application @UniCollab</button>
</div>
</>
)
}

Expand Down
8 changes: 8 additions & 0 deletions src/Components/footer_section/Legal/Licensing.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import React from 'react';
import styled from 'styled-components';
import homeIcon from '../../../img/homeicon.png';
import { Link } from 'react-router-dom';


const Licensing = () => {
return (
<>
<Link to="/">
<img src={homeIcon} alt="Home" className="home-icon" />
</Link>
<div className="py-8 mb-5 sm:w-[90vw] justify-start ml-auto mr-auto mt-10">
<div className='text-center'>
<LicenseWrapper className='license'>
Expand Down Expand Up @@ -39,6 +46,7 @@ const Licensing = () => {
</LicenseWrapper>
</div>
</div>
</>
);
};

Expand Down
9 changes: 9 additions & 0 deletions src/Components/footer_section/Legal/PrivacyPolicy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import styled from "styled-components";
import homeIcon from '../../../img/homeicon.png';
import { Link } from 'react-router-dom';


const PrivacyContainer = styled.div`
margin: auto;
Expand Down Expand Up @@ -63,6 +66,11 @@ const Strong = styled.strong`

const PrivacyPolicy = () => {
return (

<>
<Link to="/">
<img src={homeIcon} alt="Home" className="home-icon" />
</Link>
<PrivacyContainer>
<Title>Privacy Policy</Title><br/>
<Content><Strong>Last Updated:</Strong> 08-06-2024</Content>
Expand Down Expand Up @@ -124,6 +132,7 @@ const PrivacyPolicy = () => {
<Strong>Contact: </Strong>+91 99323 32321
</Content>
</PrivacyContainer>
</>
)
}

Expand Down
7 changes: 7 additions & 0 deletions src/Components/footer_section/Legal/TermsandConditions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import styled from "styled-components";
import homeIcon from '../../../img/homeicon.png';
import { Link } from 'react-router-dom';

const TermsContainer = styled.div`
margin: auto;
Expand Down Expand Up @@ -63,6 +65,10 @@ const Strong = styled.strong`

const TermsConditions = () => {
return (
<>
<Link to="/">
<img src={homeIcon} alt="Home" className="home-icon" />
</Link>
<TermsContainer>
<Title>Terms and Conditions</Title><br/>
<Content><Strong>Last Updated:</Strong> 08-06-2024</Content>
Expand Down Expand Up @@ -96,6 +102,7 @@ const TermsConditions = () => {
<Strong>Contact: </Strong>+91 99323 32321
</Content>
</TermsContainer>
</>
)
}

Expand Down
Loading