import { Skeleton } from '@/components/ui/skeleton'; import { Card, CardContent } from '@/components/ui/card'; export const PageLoader = () => (

Loading...

); export const ParkDetailSkeleton = () => (
{[...Array(4)].map((_, i) => ( ))}
); export const RideCardGridSkeleton = () => (
{[...Array(6)].map((_, i) => ( ))}
); export const EditorSkeleton = () => (
); export const UploadPlaceholder = () => (

Loading uploader...

); export const DialogSkeleton = () => (
); export const AdminFormSkeleton = () => (
{/* Name field */}
{/* Slug field */}
{/* Description textarea */}
{/* Two column fields */}
{/* Image upload section */}
{/* Action buttons */}
);