TerminalA simulated terminal component with animated command typing and output.PreviewCode$ Installation npmpnpmyarnbunnpx shadcn@latest add https://registry.fasu.dev/r/terminal.json Usage import { Terminal } from "@/components/terminal"; export default function Example() { return <Terminal commands={[ { input: "npm i motion", output: "Installed motion", }, { input: "npx shadcn@latest add https://registry.fasu.dev/r/terminal.json", output: "Installed terminal", } ]} /> } Props type Props = { commands: { input: string; output?: string | string[]; } Dependencies This component depends on: motion SnippetA code snippet component for displaying and copying code blocks.Theme SwitcherA theme switcher component for light, dark, and system modes with Vercel Inc style.