Skip to content

Commit 82013a8

Browse files
authored
Added footer navigation under the Pages section (#165)
1 parent a43be06 commit 82013a8

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

components/footer.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
HomeIcon,
88
Trophy,
99
Users,
10+
Tag,
1011
} from "lucide-react";
1112

1213
import Hint from "./hint";
@@ -203,6 +204,19 @@ export const Footer = async ({ config }: FooterProps) => {
203204
<ArrowUpRight className="h-3 w-3 opacity-0 -translate-y-1 translate-x-1 group-hover:opacity-100 group-hover:translate-y-0 group-hover:translate-x-0 transition-all duration-200" />
204205
</Link>
205206
</li>
207+
208+
<li>
209+
<Link
210+
href="/releases"
211+
className="group flex items-center gap-2 text-sm text-zinc-600 dark:text-zinc-400 hover:text-[#50B78B] transition-colors"
212+
>
213+
<span className="text-zinc-400 group-hover:text-[#50B78B] transition-colors">
214+
<Tag className="h-4 w-4" />
215+
</span>
216+
Releases
217+
<ArrowUpRight className="h-3 w-3 opacity-0 -translate-y-1 translate-x-1 group-hover:opacity-100 group-hover:translate-y-0 group-hover:translate-x-0 transition-all duration-200" />
218+
</Link>
219+
</li>
206220
</ul>
207221
</div>
208222

0 commit comments

Comments
 (0)