aboutsummaryrefslogtreecommitdiff
path: root/src/components/navigation/Footer.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-10-12 19:50:30 -0700
committer8cy <[email protected]>2020-10-12 19:50:30 -0700
commitc87d894d01b789f7953f558ad5cc68080c0f8b29 (patch)
tree1f42fa39ea03d1e4ccd92b56b4758b3fe783eee5 /src/components/navigation/Footer.js
downloadme-c87d894d01b789f7953f558ad5cc68080c0f8b29.tar.xz
me-c87d894d01b789f7953f558ad5cc68080c0f8b29.zip
woops i forgot to commit these files lul
Diffstat (limited to 'src/components/navigation/Footer.js')
-rw-r--r--src/components/navigation/Footer.js64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/components/navigation/Footer.js b/src/components/navigation/Footer.js
new file mode 100644
index 0000000..81e691c
--- /dev/null
+++ b/src/components/navigation/Footer.js
@@ -0,0 +1,64 @@
+import React, { Component } from 'react';
+
+export default class Footer extends Component {
+ render() {
+ return(
+ <div className="footer">
+ <div className="container">
+ <br /><br />
+
+ { /* <div className="collab">
+ <div className="row">
+ <div className="col-lg-12">
+ <p className="wow fadeInUp">
+ Got an interesting project? I can help you.
+ </p>
+ </div>
+ </div>
+ </div> */ }
+
+ { /* <div className="hr">
+ <div className="row"></div>
+ </div> */ }
+
+ <br /><br />
+
+ <div className="info">
+ <div className="row">
+ <div className="col-lg-4" id="personal">
+ <p className="wow fadeInUp">copyleft</p>
+ <h4 className="wow fadeInUp" data-wow-delay="0.2s">
+ <a href="/">fuwn 2020</a>
+ </h4>
+ <br /><br />
+ </div>
+
+ <div className="col-lg-4" id="media">
+ <p className="wow fadeInUp" data-wow-delay="0s">links</p>
+
+ <ul>
+ <li id="tw" className="wow fadeInUp" data-wow-delay="0.8s">
+ <a href="https://twitter.com/_fuwn">tw</a>
+ </li>
+ <li id="yt" className="wow fadeInUp" data-wow-delay="1s">
+ <a href="https://youtube.com/Fuwny">yt</a>
+ </li>
+ <li id="gh" className="wow fadeInUp" data-wow-delay="1s">
+ <a href="https://github.com/8cy">gh</a>
+ </li>
+ </ul>
+ <br /><br />
+ </div>
+
+ <div className="col-lg-4" id="address">
+ <p className="wow fadeInUp" data-wow-delay="0s">need me ?</p>
+ <h4 className="wow fadeInUp" data-wow-delay="0.2s"><a href="mailto: [email protected]">[email protected]</a></h4>
+ <br /><br />
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ )
+ }
+} \ No newline at end of file