loading and redirecting front-end

This commit is contained in:
Sara
2023-11-13 18:33:24 +01:00
parent 14ebfa53a8
commit e98f1bf4bc
6 changed files with 77 additions and 31 deletions

View File

@@ -0,0 +1,11 @@
import { faSpinner } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
export default () => (
<div className="flex flex-grow items-center justify-center h-20">
<FontAwesomeIcon
icon={faSpinner}
className="animate-spin-slow text-gray-600 flex-grow rounded-lg md:rounded-xl h-10"
/>
</div>
);