stylist / frontend / src / constants / AppointmentCards.ts
AppointmentCards.ts
Raw
import testImage from '../../public/images/image3.jpg';

export const AppointmentCards = [
  {
    id: 1,
    name: 'Mare Frizerka',
    image: testImage,
    liked: true,
    address: 'Zrinskofrankopanska 16',
    openingHours: '08:00',
    closingHours: '00:00',
    open: true,
    reviewGrade: 4.45,
    service: 'Šišanje',
    beginingService: '08:15',
    endService: '08:30',
    dateService: 1,
    monthService: 'pro',
    duration: 15,
    description:
      'Mi muskarci sa debelim  obbrvama i malim pisonjama gledamo pazuhe',
    price: 15,
    worker: 'Bruno',
  },

  {
    id: 2,
    name: 'Frizerski Balun',
    image: testImage,
    liked: false,
    address: 'ul. Mate Vilića 16',
    openingHours: '08:00',
    closingHours: '14:00',
    open: false,
    reviewGrade: 3.45,
    service: 'Susenje',
    beginingService: '08:15',
    endService: '08:30',
    dateService: 21,
    monthService: 'sij',
    duration: 15,
    description: 'Mi zene al  obbrvama i malim pisonjama gledamo pazuhe',
    price: 15,
    worker: 'Ivo',
  },
  {
    id: 3,
    name: 'Frizerski Ivo Peder',
    image: testImage,
    liked: false,
    address: 'ul. Mate Katar 16',
    openingHours: '08:00',
    closingHours: '14:00',
    open: false,
    reviewGrade: 2.45,
    service: 'Pranje',
    beginingService: '08:45',
    endService: '09:20',
    dateService: 17,
    monthService: 'veljaca',
    duration: 30,
    description: 'Pranje kose dugo trajajnee',
    price: 15,
    worker: 'Mate',
  },
];