1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 19:15:30 -04:00

add speed insights

This commit is contained in:
2025-05-18 08:24:13 -04:00
parent cb5934647f
commit 3f56632313
3 changed files with 35 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
import { env } from "@/lib/env";
import { JsonLd } from "react-schemaorg";
import { Analytics } from "@vercel/analytics/next";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { ThemeProvider, ThemeScript } from "@/components/layout/theme-context";
import Header from "@/components/layout/header";
import Footer from "@/components/layout/footer";
@@ -79,6 +80,7 @@ const RootLayout = ({ children }: Readonly<{ children: React.ReactNode }>) => {
</ThemeProvider>
<Analytics />
<SpeedInsights />
</body>
</html>
);