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

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-02-13 09:44:47 -07:00
parent 79f4da7434
commit 5e86a0678b
1 changed files with 0 additions and 3 deletions

View File

@ -1,7 +1,6 @@
import type React from "react"
import type { Metadata } from "next"
import { Inter, Space_Mono } from "next/font/google"
import { Analytics } from "@vercel/analytics/next"
import { Toaster } from "sonner"
import "./globals.css"
@ -20,7 +19,6 @@ export const metadata: Metadata = {
title: "Jeff Emmett - Token Engineering & Regenerative Economics",
description:
"Token engineering researcher exploring bonding curves, Web3 economies, and mycoeconomics. Co-founder of Commons Stack and MycoFi.",
generator: "v0.app",
icons: {
icon: [
{
@ -50,7 +48,6 @@ export default function RootLayout({
<body className={`${inter.variable} ${spaceMono.variable} font-sans antialiased`}>
{children}
<Toaster richColors position="bottom-center" />
<Analytics />
</body>
</html>
)