import type { StaticImageData } from 'next/image' import type { LucideIcon } from 'lucide-react' export interface Service { name: string; url: string; image: string | StaticImageData; icon: string; iconType: 'image' | 'lucide'; lucideIcon?: LucideIcon; description: string; features: string[]; }