NextChat-U/app/layout.tsx

20 lines
328 B
TypeScript
Raw Normal View History

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