Files
robertseares/frontend/app/layout.jsx
a2a-platform 006f5e03e3 deploy
2026-06-11 21:36:21 +00:00

15 lines
299 B
JavaScript

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>
);
}