import type { Metadata } from "next"; import { Hero } from "@/components/marketing/hero"; import { ModelStrip } from "@/components/marketing/model-strip"; import { FeatureRouter, FeatureArena, FeatureCatalog, FeatureWorkspace, FeatureAnalytics, FeatureEndpoints, FeatureAlso } from "@/components/marketing/features"; import { FeatureConfig } from "@/components/marketing/feature-config"; import { InteractiveDemo } from "@/components/marketing/demo"; import { SecurityTeaser } from "@/components/marketing/security-teaser"; import { Faq } from "@/components/marketing/faq"; import { FinalCta } from "@/components/marketing/final-cta"; export const metadata: Metadata = { title: { absolute: "PolyLLM — One interface. Every model." }, description: "PolyLLM is a free, bring-your-own-keys workspace for OpenAI, Anthropic, Google Gemini, xAI, Mistral, DeepSeek, Kimi, OpenRouter, Cerebras and your own local models: Smart Router, real streaming chat, side-by-side Arena, model catalog, projects, usage analytics. Keys encrypted with AES-256-GCM and never sent to the browser.", alternates: { canonical: "/" }, openGraph: { title: "PolyLLM — One interface. Every model.", description: "Bring your own keys. Compare models. Control every parameter. Track every token.", url: "/", }, }; export default function LandingPage() { return ( <> ); }