diff --git a/app/(main)/_landing/stats-bento.tsx b/app/(main)/_landing/stats-bento.tsx index ae1980f0..222f23d7 100644 --- a/app/(main)/_landing/stats-bento.tsx +++ b/app/(main)/_landing/stats-bento.tsx @@ -240,20 +240,22 @@ export default function StatsBento() { {/* Category marquees */} -
+ diff --git a/components/site-footer.tsx b/components/site-footer.tsx index 25c6f8a2..c2446d13 100644 --- a/components/site-footer.tsx +++ b/components/site-footer.tsx @@ -5,10 +5,16 @@ import { usePathname } from "next/navigation"; import NewsletterSection from "@/app/(main)/_landing/newsletter"; import { Icons } from "@/components/icons"; +import { docsConfig } from "@/config/docs"; +import { getFooterCategories } from "@/lib/docs"; import { cn } from "@/lib/utils"; export function SiteFooter() { + const footerCategories: { title: string; href: string }[] = getFooterCategories( + docsConfig.sidebarNav, + ); const pathname = usePathname(); + return (