Skip to content

Commit

Permalink
Merge pull request #72 from CodeChefVIT/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
NishantGupt786 authored Nov 24, 2024
2 parents 30bf8db + beb6fb7 commit 897eb0d
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 16 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"@t3-oss/env-nextjs": "^0.10.1",
"@types/mongoose": "^5.11.97",
"@upstash/ratelimit": "^2.0.3",
"@vercel/analytics": "^1.4.1",
"@vercel/kv": "^3.0.0",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
Expand Down
64 changes: 49 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Toaster } from "react-hot-toast";
import { ThemeProvider } from "@/components/theme-provider";
import { GeistSans } from "geist/font/sans";
import { Metadata } from "next";
import { Analytics } from "@vercel/analytics/next";

export const metadata: Metadata = {
metadataBase: new URL("https://papers.codechefvit.com/"),
Expand Down Expand Up @@ -90,7 +91,10 @@ export default function RootLayout({
}) {
return (
<html lang="en" className={`${GeistSans.variable}`}>
<meta name="google-site-verification" content="SjVFuH8GzIj3Ooh2JcWufBoSMWTzo77TACHomonCKVs" />
<meta
name="google-site-verification"
content="SjVFuH8GzIj3Ooh2JcWufBoSMWTzo77TACHomonCKVs"
/>
<body>
<ThemeProvider
attribute="class"
Expand All @@ -100,6 +104,7 @@ export default function RootLayout({
>
<Toaster position="top-right" reverseOrder={false} />
{children}
<Analytics />
</ThemeProvider>
</body>
</html>
Expand Down

0 comments on commit 897eb0d

Please sign in to comment.