chore: added vercel insites
This commit is contained in:
parent
9d3e04efa6
commit
3f57412b3d
|
@ -15,6 +15,7 @@
|
|||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@radix-ui/react-slot": "^1.0.2",
|
||||
"@types/mdx": "^2.0.10",
|
||||
"@vercel/speed-insights": "^1.0.2",
|
||||
"class-variance-authority": "^0.7.0",
|
||||
"clsx": "^2.0.0",
|
||||
"framer-motion": "^10.17.12",
|
||||
|
@ -1422,6 +1423,12 @@
|
|||
"resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz",
|
||||
"integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ=="
|
||||
},
|
||||
"node_modules/@vercel/speed-insights": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@vercel/speed-insights/-/speed-insights-1.0.2.tgz",
|
||||
"integrity": "sha512-y5HWeB6RmlyVYxJAMrjiDEz8qAIy2cit0fhBq+MD78WaUwQvuBnQlX4+5MuwVTWi46bV3klaRMq83u9zUy1KOg==",
|
||||
"hasInstallScript": true
|
||||
},
|
||||
"node_modules/@vue/compiler-core": {
|
||||
"version": "3.4.7",
|
||||
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.7.tgz",
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
"@radix-ui/react-icons": "^1.3.0",
|
||||
"@radix-ui/react-slot": "^1.0.2",
|
||||
"@types/mdx": "^2.0.10",
|
||||
"@vercel/speed-insights": "^1.0.2",
|
||||
"class-variance-authority": "^0.7.0",
|
||||
"clsx": "^2.0.0",
|
||||
"framer-motion": "^10.17.12",
|
||||
|
|
|
@ -3,6 +3,7 @@ import { DM_Sans, Inter } from "next/font/google";
|
|||
import "./globals.css";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { TopBlur } from "@/components/top-blur";
|
||||
import { SpeedInsights } from "@vercel/speed-insights/next";
|
||||
|
||||
const inter = Inter({ subsets: ["latin"], variable: "--body-font" });
|
||||
const dm = DM_Sans({ subsets: ["latin"], variable: "--display-font" });
|
||||
|
@ -30,6 +31,7 @@ export default function RootLayout({
|
|||
}) {
|
||||
return (
|
||||
<html suppressHydrationWarning lang="en">
|
||||
<SpeedInsights />
|
||||
<body
|
||||
className={cn(inter.className, inter.variable, dm.variable, "relative")}
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue