Skip to content

Commit 59941fc

Browse files
committed
v9
1 parent d4e8077 commit 59941fc

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

src/components/Footer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ const Footer = () => {
1818
<div className="md:text-right">
1919
<h3 className="text-lg font-semibold text-white">Follow Us</h3>
2020
<div className="mt-4 flex md:justify-end gap-4">
21-
<a href="#" className="text-gray-400 hover:text-white transition-colors">Twitter</a>
22-
<a href="#" className="text-gray-400 hover:text-white transition-colors">GitHub</a>
23-
<a href="#" className="text-gray-400 hover:text-white transition-colors">LinkedIn</a>
21+
<a href="https://x.com/fezcoddy" className="text-gray-400 hover:text-white transition-colors">Twitter</a>
22+
<a href="https://github.com/fezcode" className="text-gray-400 hover:text-white transition-colors">GitHub</a>
23+
<a href="https://www.linkedin.com/in/ahmed-samil-bulbul/?locale=en_US" className="text-gray-400 hover:text-white transition-colors">LinkedIn</a>
2424
</div>
2525
</div>
2626
</div>
@@ -31,7 +31,7 @@ const Footer = () => {
3131
<Link to="/projects" className="hover:text-white transition-colors">Projects</Link>
3232
</div>
3333
<p className="text-sm text-gray-500">
34-
&copy; {new Date().getFullYear()} My Awesome Blog. All rights reserved.
34+
&copy; {new Date().getFullYear()} fezcode. All rights reserved.
3535
</p>
3636
</div>
3737
</div>

src/components/Navbar.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ const Navbar = () => {
2020
<div className="container mx-auto flex justify-between items-center p-4 text-white">
2121
<Link to="/" className="flex items-center space-x-2">
2222
<Fez />
23-
<span className="text-2xl font-semibold tracking-tight">fezcode</span>
23+
<span className="text-2xl font-semibold tracking-tight">fez<span className="text-primary-400">codex</span></span>
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>
2727
<Link to="/blog" className="text-sm font-medium hover:text-gray-300 transition-colors">Blog</Link>
2828
<Link to="/projects" className="text-sm font-medium hover:text-gray-300 transition-colors">Projects</Link>
29-
<button className="bg-primary-500 hover:bg-primary-600 text-white font-bold py-2 px-4 rounded-full transition-colors">
30-
Play Latest
31-
</button>
29+
<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">
30+
Play Wordle
31+
</a>
3232
</div>
3333
</div>
3434
</header>

src/components/PostItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ const PostItem = ({ slug }) => {
1111
<div className="flex items-center">
1212
<p className="text-sm text-gray-400">{date}</p>
1313
<div className="ml-4 flex-grow flex items-center">
14-
<h2 className="text-xl font-semibold text-white hover:text-teal-400 transition-colors">
14+
<h2 className="text-xl font-semibold text-white hover:text-primary-400 transition-colors">
1515
{title}
1616
</h2>
1717
</div>
18-
<span className="ml-4 flex-shrink-0 text-sm font-medium text-teal-400 hover:text-teal-500 transition-colors">
18+
<span className="ml-4 flex-shrink-0 text-sm font-medium text-primary-400 hover:text-primary-500 transition-colors">
1919
Read post &rarr;
2020
</span>
2121
</div>

src/components/ProjectCard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const ProjectCard = ({ project }) => {
66
<Link to={`/projects/${project.slug}`} className="block bg-gray-800/50 p-6 rounded-lg shadow-lg hover:bg-gray-800/80 transition-colors border border-gray-700/50 cursor-pointer">
77
<h3 className="text-xl font-semibold text-white">{project.title}</h3>
88
<p className="mt-2 text-gray-400">{project.description}</p>
9-
<span className="mt-4 inline-block text-teal-400 hover:text-teal-500 transition-colors">
9+
<span className="mt-4 inline-block text-primary-400 hover:text-primary-500 transition-colors">
1010
View Project &rarr;
1111
</span>
1212
</Link>

0 commit comments

Comments
 (0)