Reuben_OS / app /layout.tsx
Reubencf's picture
First Push
8af739b
import type { Metadata } from "next";
import { Inter, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
weight: ["300", "400", "500", "600"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Reuben OS - Advanced Desktop Environment",
description: "AI-powered desktop environment with integrated development and execution tools",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${inter.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}