1
1
This repository has been archived on 2023-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
nextjs-13-template-with-tai.../src/app/page.tsx
2023-07-01 20:49:24 +01:00

19 lines
488 B
TypeScript

export default function Home() {
return (
<main className="flex flex-col items-center justify-center w-screen h-screen">
<h1 className="text-4xl font-bold">Hello, world!</h1>
<p className="mt-4 text-lg">
This is a template for Next.js 13 with Tailwind CSS.
</p>
<p className="mt-4 text-lg text-blue-500">
Created by{" "}
<a href="https://git.fascinated.cc/Fascinated/nextjs-13-template-with-tailwindcss">
Fascinated
</a>
.
</p>
</main>
);
}