Skip to content

Commit 897eb0d

Browse files
Merge pull request #72 from CodeChefVIT/staging
Staging
2 parents 30bf8db + beb6fb7 commit 897eb0d

File tree

3 files changed

+56
-16
lines changed

3 files changed

+56
-16
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"@t3-oss/env-nextjs": "^0.10.1",
2727
"@types/mongoose": "^5.11.97",
2828
"@upstash/ratelimit": "^2.0.3",
29+
"@vercel/analytics": "^1.4.1",
2930
"@vercel/kv": "^3.0.0",
3031
"axios": "^1.7.2",
3132
"bcrypt": "^5.1.1",

pnpm-lock.yaml

Lines changed: 49 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/app/layout.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { Toaster } from "react-hot-toast";
33
import { ThemeProvider } from "@/components/theme-provider";
44
import { GeistSans } from "geist/font/sans";
55
import { Metadata } from "next";
6+
import { Analytics } from "@vercel/analytics/next";
67

78
export const metadata: Metadata = {
89
metadataBase: new URL("https://papers.codechefvit.com/"),
@@ -90,7 +91,10 @@ export default function RootLayout({
9091
}) {
9192
return (
9293
<html lang="en" className={`${GeistSans.variable}`}>
93-
<meta name="google-site-verification" content="SjVFuH8GzIj3Ooh2JcWufBoSMWTzo77TACHomonCKVs" />
94+
<meta
95+
name="google-site-verification"
96+
content="SjVFuH8GzIj3Ooh2JcWufBoSMWTzo77TACHomonCKVs"
97+
/>
9498
<body>
9599
<ThemeProvider
96100
attribute="class"
@@ -100,6 +104,7 @@ export default function RootLayout({
100104
>
101105
<Toaster position="top-right" reverseOrder={false} />
102106
{children}
107+
<Analytics />
103108
</ThemeProvider>
104109
</body>
105110
</html>

0 commit comments

Comments
 (0)