@@ -3,9 +3,6 @@ import "../../global.css";
33import "./nebula-global.css" ;
44import { DashboardRouterTopProgressBar } from "@/lib/DashboardRouter" ;
55import { cn } from "@/lib/utils" ;
6- import { PHProvider } from "lib/posthog/Posthog" ;
7- import { PosthogHeadSetup } from "lib/posthog/PosthogHeadSetup" ;
8- import { PostHogPageView } from "lib/posthog/PosthogPageView" ;
96import { Inter } from "next/font/google" ;
107import NextTopLoader from "nextjs-toploader" ;
118import { NebulaProviders } from "./providers" ;
@@ -37,26 +34,19 @@ export default function Layout(props: {
3734 < html lang = "en" suppressHydrationWarning >
3835 < head >
3936 < link rel = "icon" href = "/assets/nebula/favicon.ico" />
40- < PosthogHeadSetup />
4137 </ head >
42- < PHProvider disable_session_recording = { false } >
43- < PostHogPageView />
44- < body
45- className = { cn (
46- "bg-background font-sans antialiased" ,
47- fontSans . variable ,
48- ) }
49- >
50- < NebulaProviders > { props . children } </ NebulaProviders >
51- < DashboardRouterTopProgressBar />
52- < NextTopLoader
53- color = "hsl(var(--foreground))"
54- height = { 3 }
55- shadow = { false }
56- showSpinner = { false }
57- />
58- </ body >
59- </ PHProvider >
38+ < body
39+ className = { cn ( "bg-background font-sans antialiased" , fontSans . variable ) }
40+ >
41+ < NebulaProviders > { props . children } </ NebulaProviders >
42+ < DashboardRouterTopProgressBar />
43+ < NextTopLoader
44+ color = "hsl(var(--foreground))"
45+ height = { 3 }
46+ shadow = { false }
47+ showSpinner = { false }
48+ />
49+ </ body >
6050 </ html >
6151 ) ;
6252}
0 commit comments