fix: add missing SectionSkeleton component
This commit is contained in:
@@ -78,3 +78,19 @@ export function NewsCardSkeleton() {
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function SectionSkeleton() {
|
||||||
|
return (
|
||||||
|
<div className="py-24">
|
||||||
|
<div className="container-wide">
|
||||||
|
<div className="max-w-6xl mx-auto">
|
||||||
|
<div className="grid md:grid-cols-2 gap-8">
|
||||||
|
{Array.from({ length: 4 }).map((_, index) => (
|
||||||
|
<ServiceCardSkeleton key={index} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user