import React from "react"; import Link from "next/link"; import Image from "next/image"; const footerLinks = { company: [ { label: "Product", href: "/product" }, { label: "Use Cases", href: "/use-cases" }, { label: "Blog", href: "/blog" }, { label: "Plano LLMs", href: "/llms" }, ], developerResources: [{ label: "Documentation", href: "/docs" }], }; export function Footer() { return ( ); }