11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
import type { StaticImageData } from 'next/image'
|
|
|
|
export interface Service {
|
|
name: string;
|
|
url: string;
|
|
image: string | StaticImageData;
|
|
icon: string;
|
|
description: string;
|
|
features: string[];
|
|
}
|