From cdd20614f1230971dae92c51337c5426f67c6fc3 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Tue, 12 May 2026 21:39:50 +0100 Subject: draft update --- .../alpha.174bg.net/src/app/layout.js | 37 ++++++++++++++++------ 1 file changed, 28 insertions(+), 9 deletions(-) (limited to 'communities/red-right-hand/alpha.174bg.net/src/app/layout.js') diff --git a/communities/red-right-hand/alpha.174bg.net/src/app/layout.js b/communities/red-right-hand/alpha.174bg.net/src/app/layout.js index dbc1eca..1fb6dfe 100644 --- a/communities/red-right-hand/alpha.174bg.net/src/app/layout.js +++ b/communities/red-right-hand/alpha.174bg.net/src/app/layout.js @@ -1,28 +1,47 @@ -import { Geist, Geist_Mono } from "next/font/google"; +import { Inter, Fira_Code } from "next/font/google"; import "./globals.css"; +import { CommandLineIcon } from "@heroicons/react/24/solid"; -const geistSans = Geist({ - variable: "--font-geist-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const firaCode = Fira_Code({ + variable: "--font-fira-code", subsets: ["latin"], }); +function TerminalButton() { + return ( + + + + ); +} + export const metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "174th Battle Group", + description: "Vengeance Within Reach", + icons: { + icon: "/favicon.png", + }, }; export default function RootLayout({ children }) { return ( - {children} + + + {children} + ); } -- cgit v1.2.3