Terminal

An animated terminal component that simulates typing and executing commands with a stylish neobrutalism design.

~$

Usage

import Terminal from '@/components/Terminal';

export default function MyPage() {
  return (
    <Terminal 
      command="npx create-next-app@latest my-app --typescript"
    />
  );
}

Examples

Basic Terminal

A terminal component that simulates typing and executing a command.

~$
<Terminal 
  command="npm i jeem-ui"
/>

Custom Command Terminal

Display a different command with custom text.

~$
<Terminal 
  command="npx create-next-app@latest my-app --typescript"
  className="max-w-2xl"
/>

Git Command Terminal

Display a Git command execution.

~$
<Terminal 
  command="git clone https://github.com/quadeer15sh/jeem-ui.git"
  className="max-w-2xl"
/>