14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import './globals.css';
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'My New App',
|
||
|
|
description: 'Generated by Onlook',
|
||
|
|
};
|
||
|
|
export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
|
||
|
|
return (
|
||
|
|
<html lang="en">
|
||
|
|
<body className="">{children}</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|