14 lines
313 B
TypeScript
14 lines
313 B
TypeScript
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[];
|
|
}
|