-
Notifications
You must be signed in to change notification settings - Fork 0
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
d454a9f
commit 5e81a8b
Showing
13 changed files
with
410 additions
and
258 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -1,66 +1,73 @@ | ||
.FooterContainer{ | ||
background-color: #FDEFEF; | ||
width:100%; | ||
width:100%; | ||
} | ||
|
||
.FooterContainer .home-fixed-size { | ||
display: flex; | ||
flex-direction: column; | ||
align-items:center; | ||
|
||
align-items:flex-start; | ||
justify-content: space-evenly; | ||
padding-top: 40px; padding-bottom: 20px;; | ||
} | ||
|
||
.FooterLeft { | ||
padding-top: 30px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
|
||
|
||
.FooterCenterLeft{ | ||
padding-top: 2vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
.FooterCenterLeft{ | ||
padding-top: 2vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
|
||
} | ||
} | ||
|
||
|
||
|
||
.FooterCenterRight{ | ||
padding-top: 2vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
|
||
} | ||
|
||
#ContactUs { | ||
padding-top: 2vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding-bottom: 2vh; | ||
|
||
.FooterCenterRight{ | ||
padding-top: 2vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
|
||
} | ||
} | ||
|
||
.FooterContainer h3{ | ||
color: #E41E1E; | ||
} | ||
#ContactUs { | ||
padding-top: 2vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding-bottom: 2vh; | ||
} | ||
|
||
.FooterContainer h3{ | ||
color: #E41E1E; | ||
} | ||
|
||
.Instagram a{ | ||
color: #E41E1E; | ||
} | ||
|
||
a { | ||
color: black; | ||
} | ||
a:hover { | ||
color: #E41E1E; | ||
} | ||
a { | ||
color: black; | ||
} | ||
|
||
a:hover { | ||
color: #E41E1E; | ||
} | ||
|
||
@media (max-width: 425px) { | ||
.FooterContainer .home-fixed-size { | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
} | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -8,36 +8,39 @@ import InstagramIcon from '@material-ui/icons/Instagram'; | |
function Footer() { | ||
return ( | ||
<div className= "FooterContainer"> | ||
<div className="FooterLeft"> | ||
<img src="/assets/logos/olympifigure.png" alt="" className="logo"/><img src="/assets/logos/olympiword.png" alt="" className="logo"/> </div> | ||
|
||
|
||
<div className="FooterCenterLeft"> | ||
<h3>Company</h3> | ||
<Link to="/team" >Olympi Team</Link> | ||
|
||
|
||
</div> | ||
|
||
<div className="FooterCenterRight"> | ||
<h3>Resources</h3> | ||
<Link to="/faq" >FAQ</Link> | ||
<Link to="/blog" >Blog</Link> | ||
<Link to="/terms" >Terms & Conditions</Link> | ||
</div> | ||
|
||
<div className='home-fixed-size'> | ||
|
||
<div id="ContactUs"> | ||
<h3>Contact Us</h3> | ||
<span>+33 07 66 33 78 48 </span> | ||
<span>[email protected]</span> | ||
</div> | ||
<div className="FooterLeft"> | ||
|
||
<img src="/assets/logos/olympifigure.png" alt="" className="logo"/><img src="/assets/logos/olympiword.png" alt="" className="logo"/> </div> | ||
|
||
<div className="Instagram"> | ||
<Link to="//www.instagram.com/olympi_app/" ><InstagramIcon/></Link> | ||
<div className="FooterCenterLeft"> | ||
<h3>Company</h3> | ||
<Link to="/team" >Olympi Team</Link> | ||
</div> | ||
|
||
<div className="FooterCenterRight"> | ||
<h3>Resources</h3> | ||
<Link to="/faq" >FAQ</Link> | ||
<Link to="/blog" >Blog</Link> | ||
<Link to="/terms" >Terms & Conditions</Link> | ||
</div> | ||
|
||
|
||
<div id="ContactUs"> | ||
<h3>Contact Us</h3> | ||
<span>+33 07 66 33 78 48 </span> | ||
<span>[email protected]</span> | ||
<div className="Instagram"> | ||
<Link to="//www.instagram.com/olympi_app/" ><InstagramIcon/></Link> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
|
||
</div> | ||
|
||
|
||
|
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,9 @@ | ||
.homeContainer { | ||
background: white; | ||
width:100%; | ||
} | ||
|
||
.home-fixed-size { | ||
max-width: 1024px; | ||
margin: 0 auto; | ||
} |
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
Oops, something went wrong.