feat(website): add some styling

This commit is contained in:
iCrawl
2022-06-08 23:40:03 +02:00
parent 3937b402c0
commit 3ae2633c3f
3 changed files with 16 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
export default function IndexRoute() {
return <div className="text-2xl">Hello World</div>;
return (
<main className="w-full h-screen">
<div className="h-screen grid place-content-center">
<h1 className="">Coming soon...</h1>
</div>
</main>
);
}