Skip to content

Commit

Permalink
FDA
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Aug 7, 2024
1 parent 75efff5 commit 9a8f7dd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
5 changes: 3 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import { Alata, Source_Code_Pro, DM_Sans } from "next/font/google";
import { GoogleTagManager } from "@next/third-parties/google";
import { GoogleTagManager, GoogleAnalytics } from "@next/third-parties/google";
import "./globals.css";
import "./add.css";
import { FloatingNavDemo } from "./components/floatingNavBar";
Expand All @@ -27,7 +27,8 @@ export default function RootLayout({

return (
<html lang="en" className="scroll-smooth bg-primary focus:scroll-auto">
<GoogleTagManager gtmId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID as string} />
<GoogleAnalytics gaId={process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID as string} />
<GoogleTagManager gtmId={process.env.NEXT_PUBLIC_GOOGLE_TAG_MANAGER as string} />
<body className={dm_Sans.className}>
<FloatingNavDemo />
<ThemeProvider>{children}</ThemeProvider>
Expand Down
20 changes: 19 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"@fingerprintjs/fingerprintjs": "^4.4.2",
"@material/web": "^1.5.1",
"@next/third-parties": "^14.2.5",
"@nextui-org/navbar": "^2.0.30",
"@nextui-org/react": "^2.3.6",
"@nextui-org/system": "^2.1.2",
Expand All @@ -32,7 +33,7 @@
"instagram-web-api": "^2.2.2",
"lucide-react": "^0.417.0",
"mini-svg-data-uri": "^1.4.4",
"next": "^14.2.3",
"next": "^14.2.5",
"next-themes": "^0.3.0",
"node-fetch": "^3.3.2",
"popmotion": "^11.0.5",
Expand Down

0 comments on commit 9a8f7dd

Please sign in to comment.