page.tsx 500 B

12345678910111213141516171819
  1. import Link from "next/link";
  2. export default function HomePage() {
  3. return (
  4. <main className="flex flex-1 flex-col justify-center text-center">
  5. <h1 className="mb-4 text-2xl font-bold">Hello World</h1>
  6. <p className="text-fd-muted-foreground">
  7. You can open{" "}
  8. <Link
  9. href="/docs"
  10. className="text-fd-foreground font-semibold underline"
  11. >
  12. /docs
  13. </Link>{" "}
  14. and see the documentation.
  15. </p>
  16. </main>
  17. );
  18. }