This commit is contained in:
a2a-platform
2026-06-11 21:36:21 +00:00
commit 006f5e03e3
100 changed files with 3741 additions and 0 deletions

14
frontend/app/layout.jsx Normal file
View File

@@ -0,0 +1,14 @@
import "./globals.css";
export const metadata = {
title: "Robert Seares",
description: "Software engineer, engineering leader, founder, and product builder."
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}