-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
loading phrases, download button, loading toast removed
- Loading branch information
1 parent
792f39e
commit 58e1f75
Showing
4 changed files
with
54 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const phrases = [ | ||
"Loading your magic...", | ||
"Pixels are dusting...", | ||
"Pixels are aligning...", | ||
"Magic in the works...", | ||
"Creativity brewing...", | ||
"Working on your vision...", | ||
"Magic in progress...", | ||
"Creating masterpiece...", | ||
"Just wait a moment...", | ||
"Cooking up pixels...", | ||
"Crafting your magic...", | ||
"Vision unfolding...", | ||
"Conjuring brilliance...", | ||
"Sketching your idea...", | ||
"Imagining the magic...", | ||
]; | ||
|
||
const getRandomPhrase = () => { | ||
const randomIndex = Math.floor(Math.random() * phrases.length); | ||
return phrases[randomIndex]; | ||
}; | ||
|
||
export default getRandomPhrase; |