'use client' /** * @file Reusable code block component for integration guide pages. * * Renders a VS-Code-style code block with a filename tab header. */ interface CodeBlockProps { /** Filename displayed in the tab header */ filename: string /** The code string to render inside the block */ children: string } /** * Renders a dark-themed code snippet with a filename tab. */ export function CodeBlock({ filename, children }: CodeBlockProps) { return (
{children}