2023-03-09 17:01:40 +00:00
|
|
|
import "./globals.css";
|
2023-03-07 15:23:54 +00:00
|
|
|
|
|
|
|
export const metadata = {
|
2023-03-09 17:01:40 +00:00
|
|
|
title: "ChatGPT Next Web",
|
|
|
|
description: "Your personal ChatGPT Chat Bot.",
|
|
|
|
};
|
2023-03-07 15:23:54 +00:00
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
}: {
|
2023-03-09 17:01:40 +00:00
|
|
|
children: React.ReactNode;
|
2023-03-07 15:23:54 +00:00
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<body>{children}</body>
|
|
|
|
</html>
|
2023-03-09 17:01:40 +00:00
|
|
|
);
|
2023-03-07 15:23:54 +00:00
|
|
|
}
|