-
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
001cf78
commit d1b0a70
Showing
4 changed files
with
14 additions
and
12 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 |
---|---|---|
|
@@ -12,8 +12,8 @@ const Contact = () => { | |
<div className=" border rounded py-5 flex-column container-fluid bg-dark"> | ||
<p><RiLinkedinBoxFill /><a rel="noreferrer" href="https://www.linkedin.com/in/samuel-ikoli-584380115/" target="_blank" className="px-3">Linkedin</a></p> | ||
<p><FaGithub /> <a rel="noreferrer" href="https://github.com/samuelIkoli" target="_blank" className="px-3">Github</a></p> | ||
<p><FaPhone /> <a href="tel:+2347031523145" className="px-3">Phone +234 703 152 3145</a> </p> | ||
<p><RiMailLine /> <span className="px-2"></span> Email: [email protected]</p> | ||
<p><FaPhone /> <a href="tel:+2347031523145" className="px-3"> +234 703 152 3145</a> </p> | ||
<p><RiMailLine /> <span className="px-2"></span> [email protected]</p> | ||
<br /> | ||
<p>You can also use this form to contact me.</p> | ||
<form onSubmit={handleSubmit}> | ||
|
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 |
---|---|---|
|
@@ -6,13 +6,13 @@ import { FaGithub, FaInstagram } from "react-icons/fa"; | |
|
||
const Samuel = () => { | ||
|
||
const [myAge, setMyAge] = useState(); | ||
useEffect(() => { | ||
setInterval(() => { | ||
var ageInMilliseconds = Date.now() - new Date('1997-06-22'); | ||
setMyAge((ageInMilliseconds / 1000 / 60 / 60 / 24 / 365.25).toFixed(15)); | ||
}, 100) | ||
}, []); | ||
// const [myAge, setMyAge] = useState(); | ||
// useEffect(() => { | ||
// setInterval(() => { | ||
// var ageInMilliseconds = Date.now() - new Date('1997-06-22'); | ||
// setMyAge((ageInMilliseconds / 1000 / 60 / 60 / 24 / 365.25).toFixed(15)); | ||
// }, 100) | ||
// }, []); | ||
|
||
|
||
return ( | ||
|
@@ -32,9 +32,9 @@ const Samuel = () => { | |
<div className="text-center pt-2"> | ||
<p>Lives in: Abuja, Nigeria</p> | ||
</div> | ||
<div className="text-center pt-2"> | ||
{/* <div className="text-center pt-2"> | ||
<p>Age: {myAge} </p> | ||
</div> | ||
</div> */} | ||
<hr /> | ||
<div className="text-center pt-2 pb-1"> | ||
<p><span className="mx-2"><RiMailLine /></span> [email protected]</p> | ||
|