fix: remove @vercel/analytics import (package already removed)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
2673a247bc
commit
717eed7100
|
|
@ -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 { Geist, Geist_Mono, Fredoka, Permanent_Marker } from "next/font/google"
|
import { Geist, Geist_Mono, Fredoka, Permanent_Marker } from "next/font/google"
|
||||||
import { Analytics } from "@vercel/analytics/next"
|
|
||||||
import "./globals.css"
|
import "./globals.css"
|
||||||
|
|
||||||
const _geist = Geist({ subsets: ["latin"] })
|
const _geist = Geist({ subsets: ["latin"] })
|
||||||
|
|
@ -72,7 +71,6 @@ export default function RootLayout({
|
||||||
<html lang="en" className={`${_fredoka.variable} ${_permanentMarker.variable}`}>
|
<html lang="en" className={`${_fredoka.variable} ${_permanentMarker.variable}`}>
|
||||||
<body className={`font-sans antialiased`}>
|
<body className={`font-sans antialiased`}>
|
||||||
{children}
|
{children}
|
||||||
<Analytics />
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue