36 lines
1.0 KiB
JavaScript
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} />;
|
|
}
|