import { Loader2 } from 'lucide-react'; import { type DashboardService } from '@/types'; import { ServiceCard } from './ServiceCard'; interface Props { services: DashboardService[]; submitting: boolean; onRequest: (identifier: string) => void; } export function ServicesSection({ services, submitting, onRequest }: Props) { return (