deploy
This commit is contained in:
12
frontend/app/(en)/layout.jsx
Normal file
12
frontend/app/(en)/layout.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import "../globals.css";
|
||||
import { baseMetadata } from "../seo.js";
|
||||
|
||||
export const metadata = baseMetadata;
|
||||
|
||||
export default function EnglishLayout({ children }) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
35
frontend/app/(en)/page.jsx
Normal file
35
frontend/app/(en)/page.jsx
Normal 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} />;
|
||||
}
|
||||
Reference in New Issue
Block a user