Skip to content

Commit

Permalink
fix: link to /timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
zpuckeridge committed Oct 29, 2024
1 parent c9f2342 commit df3905c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/navigation/navigation-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function NavigationClient({
{posts.map((post: any) => (
<Link
key={post.url}
href={`${post.url}`}
href={`/timeline${post.url}`}
aria-label={post.title}
className="hover:text-blue-400 dark:hover:text-blue-600 transition"
onClick={handleDrawerClose}
Expand Down Expand Up @@ -202,7 +202,7 @@ export default function NavigationClient({
{posts.map((post: any) => (
<Link
key={post.url}
href={`${post.url}`}
href={`/timeline${post.url}`}
aria-label={post.title}
className="hover:text-blue-400 dark:hover:text-blue-600 transition"
>
Expand Down

0 comments on commit df3905c

Please sign in to comment.