ever-brain / web /frontend /src /app /layout.tsx
AlexKurian's picture
feat: implement Ever Brain API backend and documentation portal
c123839
Raw
History Blame Contribute Delete
719 Bytes
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>
);
}