This commit is contained in:
a2a-platform
2026-06-13 11:20:08 +00:00
parent 0fe464c93d
commit 1a1e8db145
9 changed files with 379 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
import "../globals.css";
import { PageLoadTracker } from "../PageLoadTracker.jsx";
import { baseMetadata } from "../seo.js";
export const metadata = baseMetadata;
@@ -6,7 +7,10 @@ export const metadata = baseMetadata;
export default function EnglishLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
<body>
<PageLoadTracker locale="en" />
{children}
</body>
</html>
);
}