Commit blank index page

This commit is contained in:
Xevion
2023-01-12 21:05:16 -06:00
parent 40441ed328
commit a8373d27cd

11
src/pages/index.tsx Normal file
View File

@@ -0,0 +1,11 @@
import {NextPage} from "next";
const Index: NextPage = () => {
return <main className="flex bg-black items-center justify-center w-screen h-screen">
<div className="w-screen text-white text-center">
This project is a work-in-progress. Check back soon.
</div>
</main>
}
export default Index;