43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
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} />;
|
|
}
|