add speed insides

This commit is contained in:
2026-04-24 12:23:31 +02:00
parent da43b31aa3
commit 8ce95f2b5c
3 changed files with 8 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ import {MessagesProvider} from "./_providers/MessagesProvider";
import { CodeHighlightStyle } from "./_components/CodeHighlightSyle";
import { cn } from "~/lib/utils";
import AnimatedBackGroundContainer from "./_components/Animated/AnimatedBackGroundContainer";
import {SpeedInsights} from "@vercel/speed-insights"
const inter = Inter({ subsets: ['latin'], variable: '--font-sans' });
@@ -37,6 +37,8 @@ export default async function RootLayout({
}: Readonly<{ children: React.ReactNode, modal: React.ReactNode }>) {
return (
<>
<SpeedInsights/>
<ClerkProvider>
<TrpcProvider>
<GsapProvider>
@@ -62,5 +64,6 @@ export default async function RootLayout({
</GsapProvider>
</TrpcProvider>
</ClerkProvider>
</>
);
}