import { Skeleton } from '@/components/ui/skeleton';
import { Card, CardContent } from '@/components/ui/card';
export const PageLoader = () => (
);
export const ParkDetailSkeleton = () => (
{[...Array(4)].map((_, i) => (
))}
);
export const RideCardGridSkeleton = () => (
{[...Array(6)].map((_, i) => (
))}
);
export const EditorSkeleton = () => (
);
export const UploadPlaceholder = () => (
);
export const DialogSkeleton = () => (
);
export const AdminFormSkeleton = () => (
{/* Name field */}
{/* Slug field */}
{/* Description textarea */}
{/* Two column fields */}
{/* Image upload section */}
{/* Action buttons */}
);