fix: remove @vercel/analytics import (package already removed)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-16 14:11:18 -07:00
parent 2673a247bc
commit 717eed7100
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, Fredoka, Permanent_Marker } from "next/font/google"
import { Analytics } from "@vercel/analytics/next"
import "./globals.css"
const _geist = Geist({ subsets: ["latin"] })
@ -72,7 +71,6 @@ export default function RootLayout({
<html lang="en" className={`${_fredoka.variable} ${_permanentMarker.variable}`}>
<body className={`font-sans antialiased`}>
{children}
<Analytics />
</body>
</html>
)