- export interface ProductData {
- category: string;
- name: string;
- image: string;
- description: string;
- place: string;
- process: string;
- people: string;
- pairing: string;
- available: boolean;
- isFeatured: boolean;
- price: number;
- customID: string;
- stripeID: string;
- }
|