From 0e29d06c8593cf05554e25bd6354c2a707a0c94b Mon Sep 17 00:00:00 2001 From: Le Minh Tri Date: Sun, 15 Mar 2026 07:43:53 +0700 Subject: [PATCH] feat: add Vercel Speed Insights to root layout --- src/app/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eab8214..e3c1dda 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next"; +import { SpeedInsights } from "@vercel/speed-insights/next"; import { geistSans, geistMono } from "@/lib/fonts"; import { APP_NAME, APP_DESCRIPTION } from "@/constants"; import Providers from "@/provider"; @@ -23,6 +24,7 @@ export default function RootLayout({ className={`${geistSans.variable} ${geistMono.variable} antialiased`} > {children} + );