Skip to content

Commit

Permalink
feat(web): link the headers in the footer
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Dec 17, 2023
1 parent cc00922 commit 111ff81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Footer: FunctionalComponent = () => {

{menus.map((item) => (
<div class="mb-4" key={item.title}>
<span class="font-bold dark:text-white">{item.title}</span>
<a class="font-bold dark:text-white" href={item.url}>{item.title}</a>
<ul class="mt-2">
{item.children.map((child) => (
<li class="mt-2" key={child.name}>
Expand Down

0 comments on commit 111ff81

Please sign in to comment.