import { CopyButton } from "@/components/CopyButton"; import type { Lang } from "shiki"; import shiki from "shiki"; export async function CodeBlock(props: { code: string; lang: Lang }) { const highlighter = await shiki.getHighlighter({ theme: "one-dark-pro", }); return (