fix: remove broken vercel analytics script

This commit is contained in:
DMleadgen 2026-03-26 15:48:37 -06:00
parent 09bc131407
commit 1cd349e09a
Signed by: matt
GPG key ID: C2720CF8CD701894

View file

@ -1,7 +1,6 @@
import type React from "react" import type React from "react"
import type { Metadata } from "next" import type { Metadata } from "next"
import { Inter, Geist_Mono } from "next/font/google" import { Inter, Geist_Mono } from "next/font/google"
import { Analytics } from "@vercel/analytics/next"
import { Header } from "@/components/header" import { Header } from "@/components/header"
import { Footer } from "@/components/footer" import { Footer } from "@/components/footer"
import { StructuredData } from "@/components/structured-data" import { StructuredData } from "@/components/structured-data"
@ -135,7 +134,6 @@ export default function RootLayout({
</div> </div>
<SiteChatWidget /> <SiteChatWidget />
</CartProvider> </CartProvider>
<Analytics />
</body> </body>
</html> </html>
) )