layout.tsx 328 B

12345678910111213141516171819
  1. import "./globals.css";
  2. import "./markdown.css";
  3. export const metadata = {
  4. title: "ChatGPT Next Web",
  5. description: "Your personal ChatGPT Chat Bot.",
  6. };
  7. export default function RootLayout({
  8. children,
  9. }: {
  10. children: React.ReactNode;
  11. }) {
  12. return (
  13. <html lang="en">
  14. <body>{children}</body>
  15. </html>
  16. );
  17. }