diff --git a/apps/masterbots.ai/app/layout.tsx b/apps/masterbots.ai/app/layout.tsx
index 7c027b76..fe00e494 100644
--- a/apps/masterbots.ai/app/layout.tsx
+++ b/apps/masterbots.ai/app/layout.tsx
@@ -3,15 +3,17 @@ import { GeistSans } from 'geist/font/sans'
import { Toaster } from 'react-hot-toast'
import '@/app/globals.css'
-import { cookies } from 'next/headers'
-import dynamic from 'next/dynamic'
-import { Metadata } from 'next/types'
-import { objectToCamel } from 'ts-case-convert'
import { Header } from '@/components/layout/header'
import { Providers } from '@/components/layout/providers'
-import { cn } from '@/lib/utils'
import { GlobalStoreProvider } from '@/hooks/use-global-store'
+import { cn } from '@/lib/utils'
import { createSupabaseServerClient } from '@/services/supabase'
+import { GoogleAnalytics } from '@next/third-parties/google'
+import { MB } from '@repo/supabase'
+import dynamic from 'next/dynamic'
+import { cookies } from 'next/headers'
+import { Metadata } from 'next/types'
+import { objectToCamel } from 'ts-case-convert'
async function getCookieData(): Promise<{ userProfile }> {
const userProfile = cookies().get('userProfile')?.value || null
@@ -41,7 +43,7 @@ export default async function RootLayout({ children }: RootLayoutProps) {
+
+
+