Files
robertseares/frontend/app/(en)/page.jsx
a2a-platform 7b4a4e2781 deploy
2026-06-12 00:30:22 +00:00

36 lines
1.0 KiB
JavaScript

import { profileContent } from "../content.js";
import { ProfilePage } from "../ProfilePage.jsx";
// hi
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} />;
}