diff --git a/app/components/ui/carousel-section.tsx b/app/components/ui/carousel-section.tsx
index 0d645f7..829f0b7 100644
--- a/app/components/ui/carousel-section.tsx
+++ b/app/components/ui/carousel-section.tsx
@@ -85,7 +85,6 @@ export const CarouselSection = (properties: TNews) => {
fallback={Array.from({ length: 3 }).map((_, index) => (
diff --git a/app/components/ui/category-section.tsx b/app/components/ui/category-section.tsx
index d1e1353..1088833 100644
--- a/app/components/ui/category-section.tsx
+++ b/app/components/ui/category-section.tsx
@@ -6,6 +6,7 @@ import { twMerge } from 'tailwind-merge'
import { ErrorAwait } from '~/components/error/await'
import { CarouselNextIcon } from '~/components/icons/carousel-next'
import { CarouselPreviousIcon } from '~/components/icons/carousel-previous'
+import { ImageSkeletonIcon } from '~/components/icons/image-skeleton'
import { Button } from '~/components/ui/button'
import { useNewsContext } from '~/contexts/news'
import type { loader } from '~/routes/_news'
@@ -43,7 +44,31 @@ export const CategorySection = (properties: TNews) => {
- Loading...
}>
+
(
+
+ ))}
+ >
}
@@ -56,18 +81,14 @@ export const CategorySection = (properties: TNews) => {
) => (

-