export type Service = {
  id: string;
  name: string;
  category: string;
  description: string;
  price: number;
  duration: number;
  featured?: boolean;
};

export type GalleryItem = { id: string; src: string; alt: string; category: string; href?: string };
export type BookingMode = "request" | "instant";
