From 8da97039bbb65b83252f6d69ec1db74b9926dbeb Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Tue, 12 May 2026 21:08:43 +0100 Subject: add alpha.174bg.net new site --- .../alpha.174bg.net/src/app/favicon.ico | Bin 0 -> 25931 bytes .../alpha.174bg.net/src/app/globals.css | 26 +++++++++ .../alpha.174bg.net/src/app/layout.js | 28 +++++++++ .../red-right-hand/alpha.174bg.net/src/app/page.js | 65 +++++++++++++++++++++ 4 files changed, 119 insertions(+) create mode 100644 communities/red-right-hand/alpha.174bg.net/src/app/favicon.ico create mode 100644 communities/red-right-hand/alpha.174bg.net/src/app/globals.css create mode 100644 communities/red-right-hand/alpha.174bg.net/src/app/layout.js create mode 100644 communities/red-right-hand/alpha.174bg.net/src/app/page.js (limited to 'communities/red-right-hand/alpha.174bg.net/src') diff --git a/communities/red-right-hand/alpha.174bg.net/src/app/favicon.ico b/communities/red-right-hand/alpha.174bg.net/src/app/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/communities/red-right-hand/alpha.174bg.net/src/app/favicon.ico differ diff --git a/communities/red-right-hand/alpha.174bg.net/src/app/globals.css b/communities/red-right-hand/alpha.174bg.net/src/app/globals.css new file mode 100644 index 0000000..a2dc41e --- /dev/null +++ b/communities/red-right-hand/alpha.174bg.net/src/app/globals.css @@ -0,0 +1,26 @@ +@import "tailwindcss"; + +:root { + --background: #ffffff; + --foreground: #171717; +} + +@theme inline { + --color-background: var(--background); + --color-foreground: var(--foreground); + --font-sans: var(--font-geist-sans); + --font-mono: var(--font-geist-mono); +} + +@media (prefers-color-scheme: dark) { + :root { + --background: #0a0a0a; + --foreground: #ededed; + } +} + +body { + background: var(--background); + color: var(--foreground); + font-family: Arial, Helvetica, sans-serif; +} 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 new file mode 100644 index 0000000..dbc1eca --- /dev/null +++ b/communities/red-right-hand/alpha.174bg.net/src/app/layout.js @@ -0,0 +1,28 @@ +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geistSans = Geist({ + variable: "--font-geist-sans", + subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", + subsets: ["latin"], +}); + +export const metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ children }) { + return ( + + {children} + + ); +} diff --git a/communities/red-right-hand/alpha.174bg.net/src/app/page.js b/communities/red-right-hand/alpha.174bg.net/src/app/page.js new file mode 100644 index 0000000..2d37b5c --- /dev/null +++ b/communities/red-right-hand/alpha.174bg.net/src/app/page.js @@ -0,0 +1,65 @@ +import Image from "next/image"; + +export default function Home() { + return ( +
+
+ Next.js logo +
+

+ To get started, edit the page.js file. +

+

+ Looking for a starting point or more instructions? Head over to{" "} + + Templates + {" "} + or the{" "} + + Learning + {" "} + center. +

+
+
+ + Vercel logomark + Deploy Now + + + Documentation + +
+
+
+ ); +} -- cgit v1.2.3