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

View File

@@ -0,0 +1,35 @@
import { profileContent } from "../content.js";
import { ProfilePage } from "../ProfilePage.jsx";
export const metadata = {
title: "Robert Seares | Software Engineer, Founder, Product Builder",
description:
"Robert Seares builds companies, software, and systems across AI, biotech, cloud infrastructure, developer platforms, product engineering, and automation.",
alternates: {
canonical: "/",
languages: {
en: "/",
"pt-BR": "/pt/",
"x-default": "/",
},
},
openGraph: {
locale: "en_US",
url: "/",
title: "Robert Seares | Software Engineer, Founder, Product Builder",
description:
"I build companies, software, and systems across AI, biotech, infrastructure, developer platforms, and automation.",
images: [
{
url: "/og-image.png",
width: 1200,
height: 630,
alt: "Robert Seares - I build companies, software, and systems.",
},
],
},
};
export default function Home() {
return <ProfilePage content={profileContent.en} />;
}