Skip to content

Commit

Permalink
gfs
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Aug 7, 2024
1 parent dfcf363 commit f758272
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
15 changes: 9 additions & 6 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,21 @@ export default function RootLayout({
}>) {
return (
<html lang="en" className="scroll-smooth bg-primary focus:scroll-auto">
<GoogleAnalytics
gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID as string}
/>
<GoogleTagManager
gtmId={process.env.NEXT_PUBLIC_GOOGLE_TAG_MANAGER as string}
/>
<head>
<GoogleAnalytics
gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID as string}
/>
<GoogleTagManager
gtmId={process.env.NEXT_PUBLIC_GOOGLE_TAG_MANAGER as string}
/>
</head>
<body className={dm_Sans.className}>
<FloatingNavDemo />
<ThemeProvider>{children}</ThemeProvider>

<Footer />
</body>
<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID as string} />
</html>
);
}
1 change: 1 addition & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@ export default function Home() {
<AccordionDemo />
</section>
</main>

);
}

0 comments on commit f758272

Please sign in to comment.