Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import type { Metadata, Viewport } from "next";
import { Fragment, type ReactNode } from "react";
import { Analytics } from "@vercel/analytics/next";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { siteUrl } from "@/lib/site-url";
import "./globals.css";

Expand Down Expand Up @@ -48,7 +50,13 @@ export default function RootLayout({ children }: Readonly<{ children: ReactNode
</Fragment>
))}
</head>
<body>{children}</body>
<body>
{children}
{/* Vercel page-view analytics and Core Web Vitals reporting. Both are
no-ops off Vercel, so local dev and the E2E build stay untouched. */}
<Analytics />
<SpeedInsights />
</body>
</html>
);
}
Loading
Loading