import React from "react"; import Link from "next/link"; import Image from "next/image"; const footerLinks = { product: [ { label: "Research", href: "/research" }, { label: "Blog", href: "/blog" }, { label: "Documentation", href: "https://docs.planoai.dev", external: true }, { label: "Hugging Face", href: "https://huggingface.co/katanemo", external: true }, ], resources: [ { label: "GitHub", href: "https://github.com/katanemo/archgw", external: true }, { label: "Discord", href: "https://discord.gg/pGZf2gcwEc", external: true }, { label: "Get Started", href: "https://docs.planoai.dev/get_started/installation", external: true }, ], }; export function Footer() { return ( ); }