deploy
This commit is contained in:
22
frontend/app/pt/layout.jsx
Normal file
22
frontend/app/pt/layout.jsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import "../globals.css";
|
||||
import { baseMetadata } from "../seo.js";
|
||||
|
||||
export const metadata = {
|
||||
...baseMetadata,
|
||||
alternates: {
|
||||
canonical: "/pt/",
|
||||
languages: {
|
||||
en: "/",
|
||||
"pt-BR": "/pt/",
|
||||
"x-default": "/",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default function PortugueseLayout({ children }) {
|
||||
return (
|
||||
<html lang="pt-BR">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user