-
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.
Merge pull request #3 from McRonaah/Development
Development
- Loading branch information
Showing
29 changed files
with
1,320 additions
and
544 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -38,5 +38,8 @@ | |
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"devDependencies": { | ||
"tailwindcss": "^3.4.1" | ||
} | ||
} |
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,3 +1,4 @@ | ||
/* | ||
.App { | ||
text-align: center; | ||
} | ||
|
@@ -35,4 +36,4 @@ | |
to { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
} */ |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
import React from 'react'; | ||
|
||
const Education = () => { | ||
return ( | ||
<div>Education page Coming Soon.....,,,,,</div> | ||
) | ||
} | ||
|
||
export default Education; |
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,12 @@ | ||
import React from 'react'; | ||
|
||
const Experience = () => { | ||
return ( | ||
<div> | ||
<h1>Experience</h1> | ||
<p>page Coming Soon.....,,,,,</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default Experience; |
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,11 @@ | ||
import React from 'react'; | ||
|
||
const Contact = () => { | ||
return ( | ||
<div> | ||
<h1>Coming Soon........,</h1> | ||
</div> | ||
) | ||
} | ||
|
||
export default Contact; |
Empty file.
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,21 +1,16 @@ | ||
import React from 'react' | ||
import '../CSS/Footer.css' | ||
import { FaPhone, FaRegEnvelope, FaGithub, FaWhatsapp, } from "react-icons/fa"; | ||
import React from 'react'; | ||
import { FaGithub } from 'react-icons/fa'; | ||
|
||
|
||
function Footer () { | ||
function Footer() { | ||
return ( | ||
<div className="footer"> | ||
<div className="section1"> | ||
<h4>Contact me</h4> | ||
<p><a href='https://wa.me/+254702233145' target="_blank" rel="noreferrer"><FaWhatsapp/>+254702233145</a></p> | ||
<p> <a href="tel:+254111310907" target="_blank" rel="noreferrer"><em class="lnr lnr-phone-handset"></em><FaPhone />+254111310907 </a></p> | ||
<p><FaRegEnvelope /><a href="https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=ronaldcheruiyot342@gmail.com" target="_blank" rel="noreferrer">[email protected]</a> ®</p> | ||
<p><FaGithub/>All rights reserved ™ inc.</p> | ||
<p>CopyRight By Ronald Kipchirchir©</p> | ||
</div> | ||
<div className="footer bg-gray-300 flex flex-col md:flex-row items-center justify-between p-4"> | ||
<div className="left-section flex gap-4 items-center text-center mb-4 md:mb-0"> | ||
<FaGithub className="text-2xl" /> | ||
<p className="text-sm">CopyRight By Ronald Kipchirchir©</p> | ||
</div> | ||
) | ||
<p className="text-sm italic">Last Updated: Feb. 24, 2024</p> | ||
</div> | ||
); | ||
} | ||
|
||
export default Footer; | ||
export default Footer; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.