ChatGPT-Next-Web/app/layout.tsx

20 lines
329 B
TypeScript
Raw Normal View History

2023-03-12 19:06:21 +00:00
import "./globals.scss";
2023-03-10 18:25:33 +00:00
import "./markdown.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
}