defrag / src /app /layout.tsx
cjo93's picture
Update src/app/layout.tsx
3f1ae9e verified
raw
history blame contribute delete
785 Bytes
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { ElevenLabsAgent } from "@/components/defrag/eleven-labs-agent";
import { AuthProvider } from "@/lib/auth-context";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "DEFRAG // OS",
description: "The Operating System for Human Alignment.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="dark">
<body className={`${inter.className} bg-[#050505] text-white antialiased selection:bg-amber-500/30`}>
<AuthProvider>
{children}
<ElevenLabsAgent />
</AuthProvider>
</body>
</html>
);
}