diff --git a/src/components/ui/loading-skeleton.tsx b/src/components/ui/loading-skeleton.tsx index 47eda81..3d979b0 100644 --- a/src/components/ui/loading-skeleton.tsx +++ b/src/components/ui/loading-skeleton.tsx @@ -78,3 +78,19 @@ export function NewsCardSkeleton() { ); } + +export function SectionSkeleton() { + return ( +
+
+
+
+ {Array.from({ length: 4 }).map((_, index) => ( + + ))} +
+
+
+
+ ); +}