This repository was archived by the owner on Dec 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +16
-35
lines changed
Expand file tree Collapse file tree 6 files changed +16
-35
lines changed Original file line number Diff line number Diff line change 11import { Metadata } from "next" ;
2- import VercelAnalyticsLoader from "@/components/layout/VercelAnalyticsLoader" ;
2+ import { SpeedInsights } from "@vercel/speed-insights/next" ;
3+ import { Analytics } from "@vercel/analytics/react" ;
34
45export const metadata : Metadata = {
56 title : "Finalizar Compra | FireHosting" ,
@@ -16,7 +17,8 @@ export default function CheckoutLayout({
1617 < section className = "section-padding" >
1718 < div className = "container-max" > { children } </ div >
1819 </ section >
19- < VercelAnalyticsLoader />
20+ < SpeedInsights />
21+ < Analytics />
2022 </ div >
2123 ) ;
2224}
Original file line number Diff line number Diff line change 11"use client" ;
2- import VercelAnalyticsLoader from "@/components/layout/VercelAnalyticsLoader " ;
3-
2+ import { SpeedInsights } from "@vercel/speed-insights/next " ;
3+ import { Analytics } from "@vercel/analytics/react" ;
44export default function ServerAppLayout ( {
55 children,
66} : {
@@ -9,7 +9,8 @@ export default function ServerAppLayout({
99 return (
1010 < >
1111 { children }
12- < VercelAnalyticsLoader />
12+ < SpeedInsights />
13+ < Analytics />
1314 </ >
1415 ) ;
1516}
Original file line number Diff line number Diff line change 11"use client" ;
22import DashboardLayout from "@/components/dashboard/DashboardLayout" ;
33import { ReactNode } from "react" ;
4- import VercelAnalyticsLoader from "@/components/layout/VercelAnalyticsLoader " ;
5-
4+ import { SpeedInsights } from "@vercel/speed-insights/next " ;
5+ import { Analytics } from "@vercel/analytics/react" ;
66export default function DashboardSectionLayout ( {
77 children,
88} : {
@@ -11,7 +11,8 @@ export default function DashboardSectionLayout({
1111 return (
1212 < >
1313 < DashboardLayout > { children } </ DashboardLayout >
14- < VercelAnalyticsLoader />
14+ < SpeedInsights />
15+ < Analytics />
1516 </ >
1617 ) ;
1718}
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ import ConsoleWarning from "@/components/layout/ConsoleWarning";
66import ConditionalLayout from "@/components/layout/ConditionalLayout" ;
77import ExternalScripts from "@/components/layout/ExternalScripts" ;
88import UtmTracker from "@/components/tracking/UtmTracker" ;
9- import VercelAnalyticsLoader from "@/components/layout/VercelAnalyticsLoader" ;
9+ import { SpeedInsights } from "@vercel/speed-insights/next" ;
10+ import { Analytics } from "@vercel/analytics/react" ;
1011
1112const inter = Inter ( { subsets : [ "latin" ] } ) ;
1213
@@ -58,7 +59,8 @@ export default function RootLayout({
5859 < UtmTracker />
5960 < ConditionalLayout > { children } </ ConditionalLayout >
6061 < ExternalScripts />
61- < VercelAnalyticsLoader />
62+ < SpeedInsights />
63+ < Analytics />
6264 </ AuthProvider >
6365 </ body >
6466 </ html >
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments