diff options
| author | real-zephex <[email protected]> | 2024-03-17 09:31:49 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-17 09:31:49 +0530 |
| commit | fcaee47f9790c377737dbf9a429da988068dcb15 (patch) | |
| tree | ed231f7c2c314950d6d42504c6e214d24f10315f /src/app/layout.js | |
| parent | vercel fix ;) (diff) | |
| download | dramalama-fcaee47f9790c377737dbf9a429da988068dcb15.tar.xz dramalama-fcaee47f9790c377737dbf9a429da988068dcb15.zip | |
Added vercel analytics
Diffstat (limited to 'src/app/layout.js')
| -rw-r--r-- | src/app/layout.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app/layout.js b/src/app/layout.js index 3c36ca3..a5d6ffa 100644 --- a/src/app/layout.js +++ b/src/app/layout.js @@ -1,6 +1,8 @@ import { Inter } from "next/font/google"; import "./globals.css"; import Header from "./header/header"; +import { SpeedInsights } from "@vercel/speed-insights/next"; +import { Analytics } from "@vercel/analytics/react"; const inter = Inter({ subsets: ["latin"] }); @@ -13,6 +15,8 @@ export default function RootLayout({ children }) { return ( <html lang="en"> <body className={inter.className}> + <SpeedInsights /> + <Analytics /> <Header /> {children} </body> |