"use client"; import { useState } from "react"; import { CommandLineIcon, XMarkIcon } from "@heroicons/react/24/solid"; export default function TerminalOverlay() { const [open, setOpen] = useState(false); return ( <> setOpen(true)} className="fixed top-4 right-4 bg-gray-800 text-white p-3 rounded-full shadow-lg hover:bg-gray-700 transition-colors z-50" title="Access the web terminal" > {open && (