diff --git a/src/Client/src/components/Loading.tsx b/src/Client/src/components/Loading.tsx new file mode 100644 index 0000000..138578e --- /dev/null +++ b/src/Client/src/components/Loading.tsx @@ -0,0 +1,13 @@ +import LoadingSpinner from "./LoadingSpinner"; +import logo from "../assets/logo.webp"; + +export default function Loading() { + return ( +
+
+ Logo + +
+
+ ); +} diff --git a/src/Client/src/components/LoadingSpinner.tsx b/src/Client/src/components/LoadingSpinner.tsx new file mode 100644 index 0000000..a65b737 --- /dev/null +++ b/src/Client/src/components/LoadingSpinner.tsx @@ -0,0 +1,23 @@ +export default function LoadingSpinner() { + return ( +
+ + Loading... +
+ ); +}