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";