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>
|
||||
);
|
||||
}
|
||||
42
frontend/app/pt/page.jsx
Normal file
42
frontend/app/pt/page.jsx
Normal file
@@ -0,0 +1,42 @@
|
||||
import { profileContent } from "../content.js";
|
||||
import { ProfilePage } from "../ProfilePage.jsx";
|
||||
|
||||
export const metadata = {
|
||||
title: "Robert Seares | Engenheiro de Software, Fundador, Builder de Produto",
|
||||
description:
|
||||
"Robert Seares constroi empresas, software e sistemas em IA, biotecnologia, infraestrutura em nuvem, plataformas para desenvolvedores, produto e automacao.",
|
||||
alternates: {
|
||||
canonical: "/pt/",
|
||||
languages: {
|
||||
en: "/",
|
||||
"pt-BR": "/pt/",
|
||||
"x-default": "/",
|
||||
},
|
||||
},
|
||||
openGraph: {
|
||||
locale: "pt_BR",
|
||||
url: "/pt/",
|
||||
title: "Robert Seares | Engenheiro de Software, Fundador, Builder de Produto",
|
||||
description:
|
||||
"Eu construo empresas, software e sistemas em IA, biotecnologia, infraestrutura, plataformas para desenvolvedores e automacao.",
|
||||
images: [
|
||||
{
|
||||
url: "/og-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "Robert Seares - Eu construo empresas, software e sistemas.",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Robert Seares | Engenheiro de Software, Fundador, Builder de Produto",
|
||||
description:
|
||||
"Eu construo empresas, software e sistemas em IA, biotecnologia, infraestrutura, plataformas para desenvolvedores e automacao.",
|
||||
images: ["/og-image.png"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function PortugueseHome() {
|
||||
return <ProfilePage content={profileContent.pt} />;
|
||||
}
|
||||
Reference in New Issue
Block a user