CLI Command Card

A dark terminal card with traffic-light dots, a prompted command, and a success output line.

npx sirius-cli@latest init

✓ Workspace ready. Open the dashboard to invite your team.

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Terminal13 } from "@/components/beste/piece/terminal13";

<Terminal13
  command="npx sirius-cli@latest init"
  output="✓ Workspace ready. Open the dashboard to invite your team."
/>

More Terminal pieces

View all Terminal
$npx beste-ui@latest init

Dark shell line with an emerald prompt, command text, and a blinking block cursor.

pnpm dlx shadcn@latest add button

Copy Command

terminal2

CLI code line with a chevron prefix and a copy button that flips to a check.

deploy
$beste deploy --prod
Building application…Uploading assets…Deployed in 4.2s

Output Window

terminal3

Window-chrome shell showing a command and its output ending in a success line.

beste-uigit:(main)

Git Prompt

terminal8

Shell prompt with a git branch segment and a clean or dirty status marker.

components/Button.tsx
function Button({ label }) {
return <button>{label}</button>;
return <button className="btn">{label}</button>;
}

Diff Block

terminal9

Unified diff with added and removed lines tinted green and red.

>[1, 2, 3].map((n) => n * 2)
[ 2, 4, 6 ]
>

REPL

terminal11

Interactive prompt showing an evaluated expression and its result.