added speed insights

This commit is contained in:
2025-03-20 14:51:36 -05:00
parent 22d4ec54cd
commit abeb8cbd26
3 changed files with 39 additions and 0 deletions
+2
View File
@@ -3,6 +3,7 @@ import React, { ReactNode } from 'react';
import Footer from './Footer';
import Header from './Header';
import { Analytics } from "@vercel/analytics/react"
import { SpeedInsights } from "@vercel/speed-insights/next"
interface LayoutProps {
children: ReactNode;
@@ -31,6 +32,7 @@ const Layout: React.FC<LayoutProps> = ({
<Footer />
</div>
<Analytics />
<SpeedInsights/>
</html>
);
};