fix: remove @vercel/analytics import (not on Vercel)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-01 11:29:43 -08:00
parent 1a54a11089
commit c22655e345
1 changed files with 0 additions and 2 deletions

View File

@ -1,7 +1,6 @@
import type React from "react"
import type { Metadata } from "next"
import { Geist, Geist_Mono, Permanent_Marker } from "next/font/google"
import { Analytics } from "@vercel/analytics/next"
import "./globals.css"
const _geist = Geist({ subsets: ["latin"] })
@ -56,7 +55,6 @@ export default function RootLayout({
<html lang="en">
<body className={`font-sans antialiased`}>
{children}
<Analytics />
</body>
</html>
)