mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-29 10:13:14 +08:00
23 lines
521 B
TypeScript
23 lines
521 B
TypeScript
import { NextPage } from "next";
|
|
import Head from "next/head";
|
|
import React from "react";
|
|
import ChatView from "@/components/ChatView";
|
|
|
|
const ChatPage: NextPage = () => {
|
|
return (
|
|
<div>
|
|
<Head>
|
|
<title>SQL Chat</title>
|
|
<meta name="description" content="" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<main className="w-full h-full flex flex-col justify-center items-center bg-gray-100">
|
|
<ChatView />
|
|
</main>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ChatPage;
|