diff --git a/app/layout.tsx b/app/layout.tsx
index a33831f..b521db6 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,60 +1,69 @@
import { Toaster } from "@/components/ui/sonner"
-import { ThemeProvider } from "@/components/utility/theme-provider"
-import { cn } from "@/lib/utils"
-import { ClerkProvider } from "@clerk/nextjs"
-import { dark } from "@clerk/themes"
-import type { Metadata } from "next"
-import { Inter as FontSans } from "next/font/google"
-import "./globals.css"
-
-const fontSans = FontSans({
- subsets: ["latin"],
- variable: "--font-sans"
-})
-
-export const metadata: Metadata = {
- title: "Buildware",
- description: "Build software with AI."
-}
-
-export default function RootLayout({
- children
-}: Readonly<{
- children: React.ReactNode
-}>) {
- const appMode = process.env.NEXT_PUBLIC_APP_MODE
-
- const content = (
-
-
-
- {children}
-
-
-
-
- )
-
- if (appMode === "simple") {
- return content
- }
-
- return (
-
- {content}
-
- )
-}
+ import { ThemeProvider } from "@/components/utility/theme-provider"
+ import { cn } from "@/lib/utils"
+ import { ClerkProvider } from "@clerk/nextjs"
+ import { dark } from "@clerk/themes"
+ import type { Metadata } from "next"
+ import { Inter as FontSans } from "next/font/google"
+ import "./globals.css"
+
+ const fontSans = FontSans({
+ subsets: ["latin"],
+ variable: "--font-sans"
+ })
+
+ export const metadata: Metadata = {
+ title: "Buildware",
+ description: "Build software with AI."
+ }
+
+ /**
+ * RootLayout component wraps all pages and provides global styles and context.
+ * It conditionally includes ClerkProvider based on the app mode for authentication.
+ */
+ export default function RootLayout({
+ children
+ }: Readonly<{
+ children: React.ReactNode
+ }>) {
+ const appMode = process.env.NEXT_PUBLIC_APP_MODE
+
+ // Define the main content structure with global styles and Toaster for notifications.
+ const content = (
+
+
+ {/* ThemeProvider manages the application's theme (dark/light) */}
+
+ {children}
+ {/* Toaster component displays toast notifications */}
+
+
+
+
+ )
+
+ // If the app mode is "simple", render content without ClerkProvider.
+ if (appMode === "simple") {
+ return content
+ }
+
+ // In "advanced" mode, wrap content with ClerkProvider for user authentication.
+ return (
+
+ {content}
+
+ )
+ }
\ No newline at end of file