import { ArrowRight } from "lucide-react"; import Link from "next/link"; import { Reveal } from "@/components/connectors-marketing/reveal"; import { MarketingSection } from "@/components/marketing/section"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { getAllConnectors } from "@/lib/connectors-marketing"; /** Registry-driven connector grid with a live count badge (brief: never list connectors in copy). */ export function ConnectorGrid() { const connectors = getAllConnectors(); return (

Connectors for every platform your market uses

{connectors.length} connectors and growing

Each connector is a platform-native REST API. Call it from your own app with your SurfSense API key, or hand it to your agents through the SurfSense MCP server. Live data in, structured intelligence out.

{connectors.map((connector) => { const Icon = connector.icon; return (

{connector.cardTitle ?? `${connector.name} API`}

{connector.heroLede}

Explore ); })}
); }