From 42ccdacc55e03212354bedbff6db25b8210e13c8 Mon Sep 17 00:00:00 2001
From: MoRevolution <81017119+MoRevolution@users.noreply.github.com>
Date: Thu, 1 May 2025 22:46:13 -0500
Subject: [PATCH 1/2] feat(analytics): added speed insights and analytics to
know how bad things are
---
app/layout.tsx | 4 +++
package-lock.json | 75 +++++++++++++++++++++++++++++++++++++++++++++++
package.json | 2 ++
3 files changed, 81 insertions(+)
diff --git a/app/layout.tsx b/app/layout.tsx
index f099bf6..e8e531f 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -2,6 +2,8 @@ import type React from "react"
import "@/app/globals.css"
import type { Metadata } from "next"
import { Inter } from "next/font/google"
+import { SpeedInsights } from "@vercel/speed-insights/next"
+import { Analytics } from "@vercel/analytics/react"
import { ThemeProvider } from "@/components/theme-provider"
import { ThemeScript } from "./theme-script"
@@ -25,6 +27,8 @@ export default function RootLayout({ children }: { children: React.ReactNode })
{children}
+
+