aboutsummaryrefslogtreecommitdiff
path: root/source/96/src/app/layout.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:24:12 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-03-03 10:24:12 +0000
commit14e968309da5036711ee0e3995362aa19d7bd7d8 (patch)
treed3f630ac612fabe4380caa8f7c7b24d64e21f1a8 /source/96/src/app/layout.js
parent119e396029a5fd845d32e6c7b1c717254e9546a6 (diff)
downloadzue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.gz
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.bz2
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.tar.xz
zue.dev-14e968309da5036711ee0e3995362aa19d7bd7d8.zip
big update!
Diffstat (limited to 'source/96/src/app/layout.js')
-rw-r--r--source/96/src/app/layout.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/source/96/src/app/layout.js b/source/96/src/app/layout.js
deleted file mode 100644
index 7d7f919..0000000
--- a/source/96/src/app/layout.js
+++ /dev/null
@@ -1,30 +0,0 @@
-import "./globals.css";
-import { Space_Mono } from "next/font/google";
-
-const mainFont = Space_Mono({
- weight: ["400", "700"],
- style: ["normal", "italic"],
- subsets: ["latin-ext"],
- display: "swap",
-});
-
-export const metadata = {
- metadataBase: new URL("https://96.zue.dev"),
- title: "96: Where creatives thrive.",
- description:
- "Experience a fresh, open-source revolution in digital empowerment. We fuse influencer marketing with post-modern innovation into a full-service online talent management platform—designed so you can shine while we handle every digital detail.",
- icons: {
- icon: "/96_logo.png",
- },
-};
-
-export default ({ children }) => {
- return (
- <html
- lang="en"
- className={`${mainFont.className} bg-linear-to-br from-green-500 to-emerald-500 text-black min-h-screen`}
- >
- <body>{children}</body>
- </html>
- );
-};