Spaces:
Sleeping
Sleeping
| import type { Metadata } from "next"; | |
| import { Outfit } from "next/font/google"; | |
| import "./globals.css"; | |
| const outfit = Outfit({ | |
| subsets: ["latin"], | |
| variable: "--font-outfit", | |
| }); | |
| export const metadata: Metadata = { | |
| title: "Ever Brain | A Cognition Operating System for AI Agents", | |
| description: "Persistent memory and operational continuity for AI coding agents. Portable, markdown-native, and fully user-owned.", | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en" className={`${outfit.variable} scroll-smooth`}> | |
| <body className="antialiased bg-slate-950 font-outfit"> | |
| {children} | |
| </body> | |
| </html> | |
| ); | |
| } | |