Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added apps/frontend/public/loader.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion apps/frontend/src/components/Loader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
//TODO: Make prettier
export const Loader = () => {
return <div>Loading..</div>;
return <div className="w-full min-h-[100vh] flex items-center justify-center">
<div className="flex-col gap-2">
<img src={"/public/loader.png"} className={"w-20 h-20"} />
<p className="text-white text-xl text-bold">Loading...</p>
</div>
</div>;
};
Loading