mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-08 12:30:14 +00:00
refactor: Add frontend code to DB-GPT (#912)
This commit is contained in:
23
web/pages/_document.tsx
Normal file
23
web/pages/_document.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
import Document, { Head, Html, Main, NextScript } from 'next/document';
|
||||
|
||||
class MyDocument extends Document {
|
||||
render() {
|
||||
return (
|
||||
<Html lang="en">
|
||||
<Head>
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="description" content="Revolutionizing Database Interactions with Private LLM Technology" />
|
||||
<meta property="og:site_name" content="dbgpt.site" />
|
||||
<meta property="og:description" content="eosphoros-ai" />
|
||||
<meta property="og:title" content="DB-GPT" />
|
||||
</Head>
|
||||
<body>
|
||||
<Main />
|
||||
<NextScript />
|
||||
</body>
|
||||
</Html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default MyDocument;
|
Reference in New Issue
Block a user