code-block-variants-demo
jolyui-ui/code-block-variants-demoFreeExample
jolyui/ui publishes no description for this item.
Install it
npx shadcn@latest add https://jolyui.dev/r/code-block-variants-demo.jsonSource
1import { CodeBlock } from "@/registry/default/ui/code-block";23const code = `function calculateSum(a: number, b: number): number {4 return a + b;5}`;67export default function CodeBlockVariantsDemo() {8 return (9 <div className="grid w-full max-w-3xl gap-8">10 <div className="space-y-2">11 <h3 className="font-medium text-muted-foreground text-sm">Default</h3>12 <CodeBlock code={code} language="typescript" variant="default" />13 </div>1415 <div className="space-y-2">16 <h3 className="font-medium text-muted-foreground text-sm">Terminal</h3>17 <CodeBlock code={code} language="typescript" variant="terminal" />18 </div>1920 <div className="space-y-2">21 <h3 className="font-medium text-muted-foreground text-sm">Minimal</h3>22 <CodeBlock code={code} language="typescript" variant="minimal" />23 </div>2425 <div className="space-y-2">26 <h3 className="font-medium text-muted-foreground text-sm">Gradient</h3>27 <CodeBlock code={code} language="typescript" variant="gradient" />28 </div>2930 <div className="space-y-2">31 <h3 className="font-medium text-muted-foreground text-sm">Glass</h3>32 <div className="rounded-xl bg-gradient-to-br from-purple-500/20 to-blue-500/20 p-8">33 <CodeBlock code={code} language="typescript" variant="glass" />34 </div>35 </div>36 </div>37 );38}
What it pulls in
Other registry items
Files it writes
More from jolyui/ui
All 199 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| ai-prompt-box-demoai-prompt-box-demo | jolyui/ui | Examples | Free | no deps | |
| ai-prompt-box-loading-demoai-prompt-box-loading-demo | jolyui/ui | Examples | Free | no deps | |
| animated-beam-bidirectional-demoanimated-beam-bidirectional-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-curved-demoanimated-beam-curved-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-demoanimated-beam-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-beam-multiple-demoanimated-beam-multiple-demo | jolyui/ui | Examples | Free | 1 dep | |
| animated-table-basic-demoanimated-table-basic-demo | jolyui/ui | Examples | Free | no deps | |
| animated-table-column-demoanimated-table-column-demo | jolyui/ui | Examples | Free | no deps |
