From d4097ff9f066dd226980535055e19ce3d9b6a86b Mon Sep 17 00:00:00 2001 From: Scholarly bridge Date: Thu, 12 Feb 2026 09:40:15 -0800 Subject: [PATCH] Update layout.tsx --- apps/nextjs/app/layout.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/nextjs/app/layout.tsx b/apps/nextjs/app/layout.tsx index 66bc35c..1c23b10 100644 --- a/apps/nextjs/app/layout.tsx +++ b/apps/nextjs/app/layout.tsx @@ -1,4 +1,5 @@ import { Analytics } from '@vercel/analytics/next'; +import { SpeedInsights } from '@vercel/speed-insights/next'; export const metadata = { title: 'Next.js', @@ -13,8 +14,12 @@ export default function RootLayout({ return ( - + {/* Your website content */} {children} + + {/* Vercel tracking components (only one of each!) */} + + );