From eda3f690d8fea82e300515d87b5396a5f970a58c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:38:54 +0000 Subject: [PATCH 1/2] Initial plan From d8d7c1f2a33770430f1ece3b417542b34b8f151b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:47:04 +0000 Subject: [PATCH 2/2] Add footer with popular package links and navigation Co-authored-by: oBusk <13413409+oBusk@users.noreply.github.com> --- src/app/_layout/Footer.tsx | 73 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 71 insertions(+), 2 deletions(-) diff --git a/src/app/_layout/Footer.tsx b/src/app/_layout/Footer.tsx index e00d232f..659ac379 100644 --- a/src/app/_layout/Footer.tsx +++ b/src/app/_layout/Footer.tsx @@ -1,15 +1,84 @@ +import Link from "next/link"; import { forwardRef, type HTMLAttributes } from "react"; import { cx } from "^/lib/cva"; interface FooterProps extends HTMLAttributes {} +const popularPackages = [ + "react", + "next", + "vue", + "typescript", + "express", + "lodash", + "axios", +]; + const Footer = forwardRef( ({ className, ...props }, ref) => ( ), ); Footer.displayName = "Footer";