12 lines
225 B
TypeScript
12 lines
225 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-center bg-black text-white">
|
|
<div>
|
|
Hello World
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|