Add Vercel analytics

This commit is contained in:
ASOwnerYT
2024-12-04 20:29:24 +13:00
parent b067781769
commit 3c52ea1fd6
3 changed files with 42 additions and 1 deletions
+2 -1
View File
@@ -2,8 +2,8 @@ import localFont from "next/font/local";
import "./globals.css";
import Navbar from "./components/Navbar"
import Footer from "./components/Footer"
import Script from 'next/script'
import ChatwootWidget from "./components/ChatwootWidget"
import { Analytics } from "@vercel/analytics/react"
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
@@ -29,6 +29,7 @@ export default function RootLayout({ children }) {
<Navbar />
{children}
<Footer />
<Analytics />
</body>
</html>
);