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 = {
@@ -16,7 +17,10 @@ export const metadata = {
export default function PortugueseLayout({ children }) {
return (
<html lang="pt-BR">
<body>{children}</body>
<body>
<PageLoadTracker locale="pt" />
{children}
</body>
</html>
);
}