17 lines
375 B
TypeScript
17 lines
375 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="flex flex-col justify-center text-center flex-1">
|
|
<h1 className="text-2xl font-bold mb-4">Hello World</h1>
|
|
<p>
|
|
You can open{" "}
|
|
<Link href="/docs" className="font-medium underline">
|
|
/docs
|
|
</Link>{" "}
|
|
and see the documentation.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|