diamond-in commited on
Commit
ad6f6d2
·
verified ·
1 Parent(s): ae1ecba

Update app/page.tsx

Browse files
Files changed (1) hide show
  1. app/page.tsx +1 -1
app/page.tsx CHANGED
@@ -8,7 +8,7 @@ type TerminalLine = {
8
 
9
  export default function Terminal() {
10
  const [history, setHistory] = useState<TerminalLine[]>([
11
- { type: "system", text: "Next js Terminal [v1.0.0]" },
12
  { type: "system", text: "Connected to Hugging Face Docker Space..." },
13
  { type: "system", text: "Type 'ls' to see files or 'python3 scripts/logic.py' to run logic." }
14
  ]);
 
8
 
9
  export default function Terminal() {
10
  const [history, setHistory] = useState<TerminalLine[]>([
11
+ { type: "system", text: "Next.js Terminal [v1.0.0]" },
12
  { type: "system", text: "Connected to Hugging Face Docker Space..." },
13
  { type: "system", text: "Type 'ls' to see files or 'python3 scripts/logic.py' to run logic." }
14
  ]);