generated from the-collab-lab/smart-shopping-list
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from the-collab-lab/dtp-tailwind
Issue #19: Replace Plain CSS with Tailwind CSS on Landing and Team Pages; Add Mentors to Team Page
- Loading branch information
Showing
8 changed files
with
143 additions
and
185 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
import logo from '../assets/logo.png'; | ||
|
||
export function Loading() { | ||
return ( | ||
<div style={{ textAlign: 'center', padding: '20px' }}> | ||
<img | ||
src={`${import.meta.env.BASE_URL}logo.png`} | ||
alt="Loading..." | ||
style={{ width: '150px' }} | ||
/> | ||
<h2>Please hold on while we prepare your experience.</h2> | ||
<div className="flex flex-col items-center justify-center min-h-screen p-4 bg-bgPrimary"> | ||
<div className="flex flex-col items-center animate-fadeIn"> | ||
<img | ||
src={logo} | ||
alt="CollabShop Logo, a collaboration platform for grocery shopping." | ||
className="w-24 h-24 sm:w-32 sm:h-32 md:w-40 md:h-40 mb-4 animate-pulse" | ||
/> | ||
<h2 className="text-txtPrimary text-sm sm:text-base md:text-lg font-semibold mb-2"> | ||
Please hold on while we prepare your experience. | ||
</h2> | ||
<div className="w-10 h-10 border-t-4 border-blue-300 rounded-full animate-spin"></div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters