Skip to content

Commit 11d76fd

Browse files
committed
about me basics
1 parent 8ce0dc2 commit 11d76fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/Footer.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Footer = () => {
1616
</form>
1717
</div>
1818
<div className="md:text-right">
19-
<h3 className="text-lg font-semibold text-white">Follow Us</h3>
19+
<h3 className="text-lg font-semibold text-white">Follow Me...</h3>
2020
<div className="mt-4 flex md:justify-end gap-4">
2121
<a href="https://x.com/fezcoddy" className="text-gray-400 hover:text-white transition-colors">Twitter</a>
2222
<a href="https://github.com/fezcode" className="text-gray-400 hover:text-white transition-colors">GitHub</a>
@@ -27,6 +27,7 @@ const Footer = () => {
2727
<div className="mt-8 border-t border-gray-700/50 pt-8 flex flex-wrap items-center justify-between gap-4">
2828
<div className="flex flex-wrap items-center gap-6 text-sm font-medium text-gray-400">
2929
<Link to="/" className="hover:text-white transition-colors">Home</Link>
30+
<Link to="/about" className="hover:text-white transition-colors">About</Link>
3031
<Link to="/blog" className="hover:text-white transition-colors">Blog</Link>
3132
<Link to="/projects" className="hover:text-white transition-colors">Projects</Link>
3233
</div>

src/components/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ const Navbar = () => {
2424
</Link>
2525
<div className="flex items-center space-x-6">
2626
<Link to="/" className="text-sm font-medium hover:text-gray-300 transition-colors">Home</Link>
27+
<Link to="/about" className="text-sm font-medium hover:text-gray-300 transition-colors">About</Link>
2728
<Link to="/blog" className="text-sm font-medium hover:text-gray-300 transition-colors">Blog</Link>
2829
<Link to="/projects" className="text-sm font-medium hover:text-gray-300 transition-colors">Projects</Link>
29-
<Link to="/about" className="text-sm font-medium hover:text-gray-300 transition-colors">About</Link>
3030
<a href="https://www.nytimes.com/games/wordle/index.html" target="_blank" rel="noopener noreferrer" className="bg-primary-500 hover:bg-primary-600 text-white font-bold py-2 px-4 rounded-full transition-colors">
3131
Play Wordle
3232
</a>

0 commit comments

Comments
 (0)