import { Suspense } from 'react' import type { Metadata } from 'next' import { IntegrationTabsHeader } from '@/app/workspace/[workspaceId]/integrations/components/integration-tabs-header' import { Skills } from '@/app/workspace/[workspaceId]/skills/skills' export const metadata: Metadata = { title: 'Skills', } /** * Skills page entry. `Skills` reads URL query params via nuqs (which uses * `useSearchParams` internally), so it must sit under a Suspense boundary. The * fallback renders the real page chrome (background + tab header) so a suspend * never shows a blank frame. */ export default async function SkillsPage({ params }: { params: Promise<{ workspaceId: string }> }) { const { workspaceId } = await params return ( } > ) }