aboutsummaryrefslogtreecommitdiff
path: root/projects/96/src/app/layout.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2025-10-30 23:40:37 +0000
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2025-10-30 23:40:37 +0000
commit2131d5fec97f6163678fdec40dd2d6e9f7a5e58c (patch)
tree4e914c764809acdaa869598f10fd5016e386ac53 /projects/96/src/app/layout.js
parente9b62b2bc620bae72daa32d6b96bd5e59b2a293f (diff)
downloadzue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar.gz
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar.bz2
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.tar.xz
zue.dev-2131d5fec97f6163678fdec40dd2d6e9f7a5e58c.zip
restructure repo into a monorepo
Diffstat (limited to 'projects/96/src/app/layout.js')
-rw-r--r--projects/96/src/app/layout.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/projects/96/src/app/layout.js b/projects/96/src/app/layout.js
new file mode 100644
index 0000000..7d7f919
--- /dev/null
+++ b/projects/96/src/app/layout.js
@@ -0,0 +1,30 @@
+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>
+ );
+};