Skip to content

Commit

Permalink
a little better loading screen
Browse files Browse the repository at this point in the history
  • Loading branch information
coDiesIrae committed Oct 7, 2024
1 parent 72e6b2a commit 7d7e307
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ export default function Home() {
}
}, [installPath, searchPathsState, router, isLoading]);

return <div>Loading...</div>;
return (
<div className="h-screen w-screen flex flex-col items-center justify-end">
<span>Loading...</span>
</div>
);
}

0 comments on commit 7d7e307

Please sign in to comment.