mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00
30 lines
918 B
TypeScript
30 lines
918 B
TypeScript
import { NextPage } from "next";
|
|
import Head from "next/head";
|
|
import Link from "next/link";
|
|
import React from "react";
|
|
|
|
const HomePage: NextPage = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>ChatDBA</title>
|
|
<meta name="description" content="" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<main className="w-full min-h-screen flex flex-col items-center justify-center">
|
|
<div className="flex flex-col items-center justify-center px-4 py-16">
|
|
<h1 className="text-5xl font-extrabold sm:text-6xl">ChatDBA</h1>
|
|
<div className="grid grid-cols-1 mt-8">
|
|
<Link className="flex max-w-xs flex-col rounded-xl bg-gray-800 p-4 px-6 text-white hover:opacity-80" href="/chat">
|
|
<h3 className="text-xl font-medium">Chat →</h3>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default HomePage;
|