Skip to content

Commit

Permalink
Footer home nav link bug fixed 🐞
Browse files Browse the repository at this point in the history
  • Loading branch information
NumanIbnMazid committed Jan 28, 2024
1 parent aab270c commit 90d7878
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export default function Footer({

function FooterLink({ route, text }: { route: string; text: string }) {
return (
<Link href={route === "/home" ? "/" : `/${route}`}>
<Link href={route === "home" ? "/" : `/${route}`}>
<motion.p
className="hover:text-black dark:hover:text-white w-fit"
variants={popUp}
Expand Down
4 changes: 2 additions & 2 deletions frontend/public/feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
till now.]]></description>
<link>https://nim23.com</link>
<generator>RSS for Node</generator>
<lastBuildDate>Sun, 28 Jan 2024 19:21:19 GMT</lastBuildDate>
<lastBuildDate>Sun, 28 Jan 2024 19:33:50 GMT</lastBuildDate>
<atom:link href="https://nim23.com/feed.xml" rel="self" type="application/rss+xml"/>
<pubDate>Sun, 28 Jan 2024 19:21:19 GMT</pubDate>
<pubDate>Sun, 28 Jan 2024 19:33:50 GMT</pubDate>
<copyright><![CDATA[All rights reserved 2024, Numan Ibn Mazid]]></copyright>
<language><![CDATA[en]]></language>
</channel>
Expand Down
Loading

0 comments on commit 90d7878

Please sign in to comment.