File size: 791 Bytes
bc0dab9
8af739b
bc0dab9
 
8af739b
 
bc0dab9
8af739b
bc0dab9
 
 
 
 
 
 
 
8af739b
 
bc0dab9
 
 
 
 
 
 
 
 
 
8af739b
bc0dab9
 
 
 
 
 
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
29
30
31
32
33
34
35
36
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>
  );
}