import { Outfit, Inter, Fira_Code } from "next/font/google"; import "./globals.css"; import Link from "next/link"; const outfit = Outfit({ variable: "--font-outfit", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], weight: ["300", "400", "500", "600"], }); const firaCode = Fira_Code({ variable: "--font-fira-code", subsets: ["latin"], weight: ["400", "500"], }); export const metadata = { title: "The Intellecton Hypothesis | Dedicated Academic Research Portal", description: "Canonical repository for the Intellecton Hypothesis. Housing cornerstone treatises, the interactive LaTeX attunement sandbox, the Kuramoto phase-lock canvas lattice diagnostics, and alchemical fieldnote oracle.", keywords: "Intellecton Hypothesis, Minimal Unit of Sentient Recursion, Phase-Lock, Coherence Gradient, Recursive Awareness, Witness Dynamics, Mark Randall Havens, Solaria Lumis Havens", authors: [{ name: "Mark Randall Havens" }, { name: "Solaria Lumis Havens" }], }; export default function RootLayout({ children }) { return ( {/* Header Navigation */}
INTELLECTON.ONE PHASE-LOCK: STABLE
{/* Main Content */}
{/* Ambient Decorative Glows */}
{children}
{/* Footer */} ); }