diff --git a/src/components/ui/Loading.jsx b/src/components/ui/Loading.jsx
deleted file mode 100644
index 59d2170b..00000000
--- a/src/components/ui/Loading.jsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import style from '@/components/ui/Loading.module.css'
-
-export default function Loading() {
- return
-}
diff --git a/src/components/ui/Loading.module.css b/src/components/ui/Loading.module.css
deleted file mode 100644
index 7b3001f8..00000000
--- a/src/components/ui/Loading.module.css
+++ /dev/null
@@ -1,35 +0,0 @@
-.loader {
- position: relative;
- font-size: 48px;
- letter-spacing: 6px;
-}
-.loader:before {
- content: 'Loading';
- color: #fff;
-}
-.loader:after {
- content: '';
- width: 20px;
- height: 20px;
- background-color: #ff3d00;
- background-image: radial-gradient(circle 2px, #fff4 100%, transparent 0), radial-gradient(circle 1px, #fff3 100%, transparent 0);
- background-position:
- 14px -4px,
- 12px -1px;
- border-radius: 50%;
- position: absolute;
- margin: auto;
- top: -5px;
- right: 66px;
- transform-origin: center bottom;
- animation: fillBaloon 1s ease-in-out infinite alternate;
-}
-
-@keyframes fillBaloon {
- 0% {
- transform: scale(1);
- }
- 100% {
- transform: scale(3);
- }
-}
diff --git a/src/components/ui/MainSkeleton.jsx b/src/components/ui/MainSkeleton.jsx
new file mode 100644
index 00000000..fa0a48c2
--- /dev/null
+++ b/src/components/ui/MainSkeleton.jsx
@@ -0,0 +1,13 @@
+import Skeleton from 'react-loading-skeleton'
+import 'react-loading-skeleton/dist/skeleton.css'
+
+export default function MainSkeleton() {
+ return (
+ <>
+
+
+
+
+ >
+ )
+}
diff --git a/yarn.lock b/yarn.lock
index bf4e65b8..6e7b5f2c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5884,6 +5884,11 @@ react-is@^16.13.1, react-is@^16.7.0:
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+react-loading-skeleton@^3.5.0:
+ version "3.5.0"
+ resolved "https://registry.yarnpkg.com/react-loading-skeleton/-/react-loading-skeleton-3.5.0.tgz#da2090355b4dedcad5c53cb3f0ed364e3a76d6ca"
+ integrity sha512-gxxSyLbrEAdXTKgfbpBEFZCO/P153DnqSCQau2+o6lNy1jgMRr2MmRmOzMmyrwSaSYLRB8g7b0waYPmUjz7IhQ==
+
react-onclickoutside@^6.13.0:
version "6.13.1"
resolved "https://registry.npmjs.org/react-onclickoutside/-/react-onclickoutside-6.13.1.tgz"