import { getIntegrations } from "@/lib/registry"; import { IntegrationExplorer } from "@/components/integration-explorer"; import { IntegrationsTabs } from "@/components/integrations-tabs"; interface IntegrationsPageProps { searchParams: Promise<{ feature?: string }>; } export default async function IntegrationsPage({ searchParams, }: IntegrationsPageProps) { const integrations = getIntegrations(); const params = await searchParams; return (