Adding Vercel Analytics

This commit is contained in:
2026-03-31 20:06:46 +05:30
parent 7a0ba9e459
commit 28b4bdab9e
3 changed files with 46 additions and 0 deletions

43
package-lock.json generated
View File

@@ -8,6 +8,7 @@
"name": "calcforcardiac", "name": "calcforcardiac",
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@vercel/analytics": "^2.0.1",
"animate.css": "^4.1.1", "animate.css": "^4.1.1",
"next": "16.2.1", "next": "16.2.1",
"react": "19.2.4", "react": "19.2.4",
@@ -2142,6 +2143,48 @@
"win32" "win32"
] ]
}, },
"node_modules/@vercel/analytics": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@vercel/analytics/-/analytics-2.0.1.tgz",
"integrity": "sha512-MTQG6V9qQrt1tsDeF+2Uoo5aPjqbVPys1xvnIftXSJYG2SrwXRHnqEvVoYID7BTruDz4lCd2Z7rM1BdkUehk2g==",
"license": "MIT",
"peerDependencies": {
"@remix-run/react": "^2",
"@sveltejs/kit": "^1 || ^2",
"next": ">= 13",
"nuxt": ">= 3",
"react": "^18 || ^19 || ^19.0.0-rc",
"svelte": ">= 4",
"vue": "^3",
"vue-router": "^4"
},
"peerDependenciesMeta": {
"@remix-run/react": {
"optional": true
},
"@sveltejs/kit": {
"optional": true
},
"next": {
"optional": true
},
"nuxt": {
"optional": true
},
"react": {
"optional": true
},
"svelte": {
"optional": true
},
"vue": {
"optional": true
},
"vue-router": {
"optional": true
}
}
},
"node_modules/acorn": { "node_modules/acorn": {
"version": "8.16.0", "version": "8.16.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",

View File

@@ -9,6 +9,7 @@
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"@vercel/analytics": "^2.0.1",
"animate.css": "^4.1.1", "animate.css": "^4.1.1",
"next": "16.2.1", "next": "16.2.1",
"react": "19.2.4", "react": "19.2.4",

View File

@@ -1,6 +1,7 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import "./globals.css"; import "./globals.css";
import 'animate.css'; import 'animate.css';
import { Analytics } from "@vercel/analytics/next"
export const metadata: Metadata = { export const metadata: Metadata = {
title: "CalcForCardiac", title: "CalcForCardiac",
@@ -17,6 +18,7 @@ export default function RootLayout({
lang="en" lang="en"
> >
<body className="min-h-full flex flex-col">{children}</body> <body className="min-h-full flex flex-col">{children}</body>
<Analytics/>
</html> </html>
); );
} }