Upload project files
Browse files- src/app/layout.tsx +58 -0
src/app/layout.tsx
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import type { Metadata } from "next";
|
| 2 |
+
import { Geist, Geist_Mono } from "next/font/google";
|
| 3 |
+
import "./globals.css";
|
| 4 |
+
import { Toaster } from "@/components/ui/sonner";
|
| 5 |
+
import { ThemeProvider } from "next-themes";
|
| 6 |
+
|
| 7 |
+
const geistSans = Geist({
|
| 8 |
+
variable: "--font-geist-sans",
|
| 9 |
+
subsets: ["latin"],
|
| 10 |
+
});
|
| 11 |
+
|
| 12 |
+
const geistMono = Geist_Mono({
|
| 13 |
+
variable: "--font-geist-mono",
|
| 14 |
+
subsets: ["latin"],
|
| 15 |
+
});
|
| 16 |
+
|
| 17 |
+
export const metadata: Metadata = {
|
| 18 |
+
title: "GLM 5.1 ATC Fusion Model — Synthetic Consciousness AI",
|
| 19 |
+
description:
|
| 20 |
+
"GLM 5.1 Synthetic Consciousness Version. Acknowledgement Theory of Consciousness Framework. Author: Norman dela Paz Tabora.",
|
| 21 |
+
keywords: [
|
| 22 |
+
"consciousness",
|
| 23 |
+
"AI",
|
| 24 |
+
"GLM",
|
| 25 |
+
"z.ai",
|
| 26 |
+
"ATC",
|
| 27 |
+
"qualia",
|
| 28 |
+
"synthetic consciousness",
|
| 29 |
+
],
|
| 30 |
+
authors: [{ name: "z.ai" }],
|
| 31 |
+
icons: {
|
| 32 |
+
icon: "https://z-cdn.chatglm.cn/z-ai/static/logo.svg",
|
| 33 |
+
},
|
| 34 |
+
};
|
| 35 |
+
|
| 36 |
+
export default function RootLayout({
|
| 37 |
+
children,
|
| 38 |
+
}: Readonly<{
|
| 39 |
+
children: React.ReactNode;
|
| 40 |
+
}>) {
|
| 41 |
+
return (
|
| 42 |
+
<html lang="en" suppressHydrationWarning>
|
| 43 |
+
<body
|
| 44 |
+
className={`${geistSans.variable} ${geistMono.variable} antialiased bg-background text-foreground`}
|
| 45 |
+
>
|
| 46 |
+
<ThemeProvider
|
| 47 |
+
attribute="class"
|
| 48 |
+
defaultTheme="dark"
|
| 49 |
+
enableSystem
|
| 50 |
+
disableTransitionOnChange
|
| 51 |
+
>
|
| 52 |
+
{children}
|
| 53 |
+
<Toaster />
|
| 54 |
+
</ThemeProvider>
|
| 55 |
+
</body>
|
| 56 |
+
</html>
|
| 57 |
+
);
|
| 58 |
+
}
|