15 lines
299 B
JavaScript
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>
|
|
);
|
|
}
|