From bf489b65223b424c0bba10f919ef269c39a813b1 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Wed, 13 May 2026 17:02:38 +0100 Subject: remove terminal --- .../174bg.net/public/terminal/index.html | 267 --------------------- .../red-right-hand/174bg.net/src/app/layout.js | 6 +- .../src/components/TerminalOverlay/index.js | 39 --- 3 files changed, 1 insertion(+), 311 deletions(-) delete mode 100644 communities/red-right-hand/174bg.net/public/terminal/index.html delete mode 100644 communities/red-right-hand/174bg.net/src/components/TerminalOverlay/index.js diff --git a/communities/red-right-hand/174bg.net/public/terminal/index.html b/communities/red-right-hand/174bg.net/public/terminal/index.html deleted file mode 100644 index 64014df..0000000 --- a/communities/red-right-hand/174bg.net/public/terminal/index.html +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - - - - - diff --git a/communities/red-right-hand/174bg.net/src/app/layout.js b/communities/red-right-hand/174bg.net/src/app/layout.js index ce97609..9fb4098 100644 --- a/communities/red-right-hand/174bg.net/src/app/layout.js +++ b/communities/red-right-hand/174bg.net/src/app/layout.js @@ -1,6 +1,5 @@ import { Inter, Fira_Code } from "next/font/google"; import "./globals.css"; -import TerminalOverlay from "@/components/TerminalOverlay"; const inter = Inter({ variable: "--font-inter", @@ -26,10 +25,7 @@ export default function RootLayout({ children }) { lang="en" className={`${inter.variable} ${firaCode.variable} h-full antialiased`} > - - - {children} - + {children} ); } diff --git a/communities/red-right-hand/174bg.net/src/components/TerminalOverlay/index.js b/communities/red-right-hand/174bg.net/src/components/TerminalOverlay/index.js deleted file mode 100644 index 2d7c5da..0000000 --- a/communities/red-right-hand/174bg.net/src/components/TerminalOverlay/index.js +++ /dev/null @@ -1,39 +0,0 @@ -"use client"; - -import { useState } from "react"; -import { CommandLineIcon, XMarkIcon } from "@heroicons/react/24/solid"; - -export default function TerminalOverlay() { - const [open, setOpen] = useState(false); - - return ( - <> - - - {open && ( -
-
- -