Initial commit

This commit is contained in:
Lee
2023-07-01 20:43:53 +00:00
commit eef0293ede
19 changed files with 4550 additions and 0 deletions

18
src/app/page.tsx Normal file
View File

@ -0,0 +1,18 @@
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>
);
}