Sacha VAUDEY 81e63e5a8d
Some checks failed
Build and Test / Classic Build (pull_request) Failing after 40s
Build and Test / Docker Build (pull_request) Has been skipped
fix service cards icons
2025-09-14 15:01:25 +02:00

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[];
}