File size: 719 Bytes
a02272f
 
 
 
 
 
 
 
 
 
c123839
a02272f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>
  );
}