This commit is contained in:
a2a-platform
2026-06-11 22:13:07 +00:00
parent 006f5e03e3
commit 195a793bfa
110 changed files with 1301 additions and 1454 deletions

42
frontend/app/pt/page.jsx Normal file
View 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} />;
}