chore :analytics

This commit is contained in:
Damien Ostler 2024-05-28 00:04:45 -04:00
parent 401e3d41dc
commit 381009d5c9
3 changed files with 29 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import { GeistSans } from "geist/font/sans";
import "./globals.css"; import "./globals.css";
import NavigationBar from "@/components/NavigationBar"; import NavigationBar from "@/components/NavigationBar";
import { SpeedInsights } from "@vercel/speed-insights/next" import { SpeedInsights } from "@vercel/speed-insights/next"
import { Analytics } from "@vercel/analytics/react"
const defaultUrl = process.env.VERCEL_URL const defaultUrl = process.env.VERCEL_URL
? `https://${process.env.VERCEL_URL}` ? `https://${process.env.VERCEL_URL}`
: "http://localhost:3000"; : "http://localhost:3000";
@ -23,6 +24,7 @@ export default function RootLayout({
<div className="w-full fixed z-30 text-white white"> <div className="w-full fixed z-30 text-white white">
<NavigationBar/> <NavigationBar/>
<SpeedInsights/> <SpeedInsights/>
<Analytics/>
</div> </div>
<main className="min-h-screen flex flex-col items-center bg-gradient-to-r from-neroshi-blue-900 to-neroshi-blue-950 overflow-hidden"> <main className="min-h-screen flex flex-col items-center bg-gradient-to-r from-neroshi-blue-900 to-neroshi-blue-950 overflow-hidden">
{children} {children}

26
package-lock.json generated
View File

@ -8,6 +8,7 @@
"@supabase/ssr": "latest", "@supabase/ssr": "latest",
"@supabase/supabase-js": "latest", "@supabase/supabase-js": "latest",
"@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/aspect-ratio": "^0.4.2",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11", "@vercel/speed-insights": "^1.0.11",
"autoprefixer": "10.4.17", "autoprefixer": "10.4.17",
"clsx": "^2.1.1", "clsx": "^2.1.1",
@ -974,6 +975,26 @@
"@types/node": "*" "@types/node": "*"
} }
}, },
"node_modules/@vercel/analytics": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@vercel/analytics/-/analytics-1.3.1.tgz",
"integrity": "sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==",
"dependencies": {
"server-only": "^0.0.1"
},
"peerDependencies": {
"next": ">= 13",
"react": "^18 || ^19"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"react": {
"optional": true
}
}
},
"node_modules/@vercel/speed-insights": { "node_modules/@vercel/speed-insights": {
"version": "1.0.11", "version": "1.0.11",
"resolved": "https://registry.npmjs.org/@vercel/speed-insights/-/speed-insights-1.0.11.tgz", "resolved": "https://registry.npmjs.org/@vercel/speed-insights/-/speed-insights-1.0.11.tgz",
@ -2778,6 +2799,11 @@
"node": ">=10" "node": ">=10"
} }
}, },
"node_modules/server-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz",
"integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA=="
},
"node_modules/sharp": { "node_modules/sharp": {
"version": "0.33.4", "version": "0.33.4",
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz", "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz",

View File

@ -9,6 +9,7 @@
"@supabase/ssr": "latest", "@supabase/ssr": "latest",
"@supabase/supabase-js": "latest", "@supabase/supabase-js": "latest",
"@tailwindcss/aspect-ratio": "^0.4.2", "@tailwindcss/aspect-ratio": "^0.4.2",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.11", "@vercel/speed-insights": "^1.0.11",
"autoprefixer": "10.4.17", "autoprefixer": "10.4.17",
"clsx": "^2.1.1", "clsx": "^2.1.1",