Files
Corbin Crutchley 51f6810f51 docs: change slug
2023-12-18 13:55:30 -08:00

13 lines
226 B
JavaScript

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}