layout.tsx 628 B

123456789101112131415161718192021222324252627
  1. import "./styles/globals.scss";
  2. import "./styles/markdown.scss";
  3. import "./styles/prism.scss";
  4. export const metadata = {
  5. title: "ChatGPT Next Web",
  6. description: "Your personal ChatGPT Chat Bot.",
  7. };
  8. export default function RootLayout({
  9. children,
  10. }: {
  11. children: React.ReactNode;
  12. }) {
  13. return (
  14. <html lang="en">
  15. <head>
  16. <meta
  17. name="viewport"
  18. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
  19. />
  20. <link rel="manifest" href="/site.webmanifest"></link>
  21. </head>
  22. <body>{children}</body>
  23. </html>
  24. );
  25. }