feat: add basic ui

This commit is contained in:
Yidadaa
2023-03-10 01:01:40 +08:00
parent 0decdb3e43
commit d49b2aa2c3
26 changed files with 4500 additions and 463 deletions

View File

@@ -1,18 +1,18 @@
import './globals.css'
import "./globals.css";
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
title: "ChatGPT Next Web",
description: "Your personal ChatGPT Chat Bot.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
);
}