import { Product } from '../interfaces/interfaces'

export const products: Product[] = [
  {
    id: '1',
    title: 'Coffee Mug - Card',
    img: 'coffee-mug.png',
  },
  {
    id: '2',
    title: 'b',
    img: 'coffee-mug2.png',
  },
  {
    id: '3',
    title: 'c',
  },
  {
    id: '4',
    title: 'd',
    img: 'coffee-mug.png',
  },
]
