-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
design:bug fixed design and change logo and improve performance for l…
…oad pages
- Loading branch information
1 parent
0c8a828
commit fe2a364
Showing
43 changed files
with
557 additions
and
620 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
export default function LazyBookComponent() { | ||
return ( | ||
|
||
<div className="min-h-[15rem] flex flex-col bg-transparent "> | ||
<div className="flex flex-auto flex-col justify-center items-center p-4 md:p-5"> | ||
<div className="flex justify-center"> | ||
<div className="animate-spin inline-block w-6 h-6 border-[3px] border-current border-t-transparent text-blue-600 rounded-full dark:text-blue-500" role="status" aria-label="loading"> | ||
<span className="sr-only">Loading...</span> | ||
</div> | ||
<div className="flex space-x-2 justify-center items-center bg-transparent mt-[10%] dark:invert"> | ||
<span className="sr-only">Loading...</span> | ||
<div className="h-6 w-6 bg-[#16a34a] rounded-full animate-bounce [animation-delay:-0.3s]"></div> | ||
<div className="h-6 w-6 bg-[#16a34a] rounded-full animate-bounce [animation-delay:-0.15s]"></div> | ||
<div className="h-6 w-6 bg-[#16a34a] rounded-full animate-bounce"></div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
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,10 +1,13 @@ | ||
import Image from "next/image"; | ||
import React from "react"; | ||
export default function LogoApplication() { | ||
return ( | ||
<img | ||
className="w-10 mx-auto my-3 " | ||
src="/book.png" | ||
alt="image description" | ||
<Image | ||
src="/images/logo.svg" | ||
alt="The logo could not be loaded" | ||
width={50} | ||
height={50} | ||
className="mx-auto my-3" | ||
/> | ||
); | ||
} |
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
Oops, something went wrong.