This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
-
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
b90adfd
commit c47f6e6
Showing
7 changed files
with
412 additions
and
664 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React, { Component } from 'react' | ||
|
||
export class AppNav extends Component { | ||
render() { | ||
return ( | ||
<nav id="mobile-menu"> | ||
<ul> | ||
<li> | ||
<a href="index.php">home</a> | ||
</li> | ||
|
||
<li> | ||
<a href="contact.php">contact us</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
) | ||
} | ||
} | ||
|
||
export default AppNav |
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,73 @@ | ||
import React from "react" | ||
|
||
const Footer = () => ( | ||
|
||
<section id="footer-fixed"> | ||
<div className="big-footer"> | ||
<div className="container"> | ||
<div className="row"> | ||
<div className="col-xl-3 col-lg-3 col-md-3 col-sm-6"> | ||
<div className="footer-logo"> | ||
<a href="index.php"> | ||
<img src="img/footer-logo.png" alt="" /> | ||
</a> | ||
<p> | ||
Our success is measured by your success. | ||
For us it’s not just creating something that looks great, it needs <br />to deliver results | ||
for you. | ||
</p> | ||
</div> | ||
<div className="social"> | ||
<ul> | ||
<li><a className="footer-socials" href="#"><i className="fa fa-instagram"></i></a></li> | ||
<li><a className="footer-socials" href="#"><i className="fa fa-twitter"></i></a></li> | ||
<li><a className="footer-socials" href="#"><i className="fa fa-linkedin"></i></a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div className="col-xl-3 col-lg-3 col-md-3 col-sm-6"> | ||
<div className="footer-heading"> | ||
<h3>quick links</h3> | ||
</div> | ||
<div className="footer-content"> | ||
<ul> | ||
<li><a href="about-us.php">about us</a></li> | ||
<li><a href="contact.php">contact us</a></li> | ||
<li><a href="#">privacy policy</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div className="col-xl-3 col-lg-3 col-md-3 col-sm-6"> | ||
<div className="footer-heading"> | ||
<h3>Latest works</h3> | ||
</div> | ||
<div className="footer-content"> | ||
<ul> | ||
<li><a href="http://csmarttravel.com">C Smart Website</a></li> | ||
<li><a href="http://mbashaholdings.com/all">Mbasha Holdings Ltd</a></li> | ||
<li><a href="http://expectinafricasafari.com/">Expect In Africa Safari</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div className="col-xl-3 col-lg-3 col-md-3 col-sm-6"> | ||
<div className="footer-heading"> | ||
<h3>Let us know you were here</h3> | ||
</div> | ||
<div className="footer-content footer-cont-mar-40"> | ||
<form action="#"> | ||
<input id="leadgenaration" type="email" placeholder="Enter your email" /> | ||
<input id="subscribe" type="submit" value="send" /> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<footer> | ||
<p>All rights reserved @ Emanate {new Date().getFullYear()}.</p> | ||
</footer> | ||
</section> | ||
) | ||
|
||
|
||
export default Footer |
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.