import Link from "next/link"; import { ExternalLink, Mail } from "lucide-react"; import { Logo } from "@/components/brand/logo"; import { ProviderIcon } from "@/components/brand/provider-icon"; import { PROVIDER_ORDER } from "@/lib/client/providers"; import { PROVIDER_LABEL } from "./mock-data"; import { InstallHint } from "./install-hint"; const COLUMNS: { title: string; links: { label: string; href: string; external?: boolean }[] }[] = [ { title: "Product", links: [ { label: "Features", href: "/#features" }, { label: "Arena", href: "/#arena" }, { label: "Interactive demo", href: "/#demo" }, { label: "Security", href: "/security" }, { label: "FAQ", href: "/#faq" }, ], }, { title: "Models", links: [ { label: "Model catalog", href: "/models" }, { label: "Live model API (JSON)", href: "/api/public/models" }, { label: "Try the Arena", href: "/app/arena" }, ], }, { title: "Account", links: [ { label: "Sign in", href: "/login" }, { label: "Create account", href: "/signup" }, { label: "Forgot password", href: "/forgot-password" }, { label: "Open the app", href: "/app/chat" }, ], }, { title: "Legal", links: [ { label: "Privacy", href: "/privacy" }, { label: "Terms", href: "/terms" }, { label: "Contact", href: "/contact" }, ], }, ]; export function MarketingFooter() { return ( ); }