-
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
Showing
4 changed files
with
94 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react' | ||
|
||
function Contact () { | ||
return ( | ||
<div className="py-4"> | ||
<p className="text-2xl text-gray-500 font-extrabold">Contact Me <span role="img" aria-label="Envelope">📩</span></p> | ||
<div className="pr-8"> | ||
<div className="my-4"> | ||
<p className="text-gray-400 text-sm">Your Name</p> | ||
<input className="px-3 py-2 border-b bg-transparent w-full" placeholder="What can I address you as"/> | ||
</div> | ||
<div className="my-4"> | ||
<p className="text-gray-400 text-sm">Your Email Address</p> | ||
<input className="px-3 py-2 border-b bg-transparent w-full" placeholder="Where I can reach you to respond"/> | ||
</div> | ||
<div className="py-4"> | ||
<p className="text-gray-400 text-sm">Your Message</p> | ||
<textarea className="px-3 py-2 border-b bg-transparent w-full" rows="4" | ||
placeholder="Hi, I would like to speak to you concerning a solution I want to build"></textarea> | ||
</div> | ||
<div> | ||
<button className="border text-center w-full py-3 rounded-md hover:bg-white hover:text-black">Contact Zadat!</button> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Contact; |
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,60 @@ | ||
import React from "react"; | ||
import { FaExternalLinkAlt, FaLinkedinIn, FaTwitter, FaGithub, FaFileDownload } from 'react-icons/fa' | ||
|
||
function Footer() { | ||
return ( | ||
<div className="bottom-0 absolute py-8 flex"> | ||
<img | ||
className="h-16 w-16 object-cover rounded-full" | ||
src="images/avatar.jpg" | ||
alt="Zadat Olayinka" | ||
/> | ||
<div className="flex items-center px-4"> | ||
<a | ||
href="https://twitter.com/bundayyo" | ||
className="flex items-center" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaTwitter /> <span className="px-4"> Twitter</span>{" "} | ||
<FaExternalLinkAlt /> | ||
</a> | ||
</div> | ||
<div className="flex items-center px-4"> | ||
<a | ||
href="https://twitter.com/bundayyo" | ||
className="flex items-center" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaLinkedinIn /> <span className="px-4"> LinkedIn</span>{" "} | ||
<FaExternalLinkAlt /> | ||
</a> | ||
</div> | ||
<div className="flex items-center px-4"> | ||
<a | ||
href="https://twitter.com/bundayyo" | ||
className="flex items-center" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaGithub /> <span className="px-4"> GitHub</span>{" "} | ||
<FaExternalLinkAlt /> | ||
</a> | ||
</div> | ||
<div className="flex items-center px-4"> | ||
<a | ||
href="https://twitter.com/bundayyo" | ||
className="flex items-center" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaFileDownload /> <span className="px-4"> Resume</span>{" "} | ||
<FaExternalLinkAlt /> | ||
</a> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default Footer; |