Skip to content

Commit

Permalink
feat(doctors): update doctors more quality images
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrudnik authored Jan 27, 2022
1 parent 7202311 commit b6ba2a4
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 16 deletions.
4 changes: 4 additions & 0 deletions src/api/calendar.api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ export const getUserCalendar = (id: number): Promise<CalendarEvent[]> => {
date: now + 1000 * 60 * 60 * 24 * 4,
doctor: 5,
},
{
date: now - 1000 * 60 * 60 * 24 * 3,
doctor: 7,
},
]);
});
});
Expand Down
46 changes: 30 additions & 16 deletions src/api/doctors.api.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import cameron from 'assets/images/doctors/cameron-bell.png';
import annabella from 'assets/images/doctors/annabella-morton.png';
import ryan from 'assets/images/doctors/ryan-thompson.png';
import ruby from 'assets/images/doctors/ruby-burns.png';
import francisco from '@app/assets/images/doctors/francisco-venancio.png';
import james from 'assets/images/doctors/james-moss.png';
import sara from 'assets/images/doctors/sara-mills.png';
import jorden from 'assets/images/doctors/jorden-cannon.png';
import kayden from 'assets/images/doctors/kayden-hunter.png';
import steve from '@app/assets/images/doctors/steve.jpeg';

export interface Doctor {
id: number;
Expand Down Expand Up @@ -39,40 +40,40 @@ export const getDoctorsData = (): Promise<Doctor[]> => {
},
{
id: 2,
name: 'Annabella Morton',
name: 'Kayden Hunter',
specifity: 2,
rating: 5,
gps: {
latitude: 40.73061,
longitude: -73.935242,
latitude: 41.732438,
longitude: 44.7688134,
},
imgUrl: annabella,
imgUrl: kayden,
phone: '+X-XXX-XXX-XXXX',
address: '111 Foxrun Street Conyers, GA 30012',
address: '850 South Tunnel St. Newburgh, NY 12550',
},
{
id: 3,
name: 'Ryan Thompson',
name: 'Annabella Morton',
specifity: 3,
rating: 4,
rating: 5,
gps: {
latitude: 55.17111,
longitude: -118.796928,
latitude: 40.73061,
longitude: -73.935242,
},
imgUrl: ryan,
imgUrl: annabella,
phone: '+X-XXX-XXX-XXXX',
address: '9540 South Del Monte Rd. West Hempstead, NY 11552',
address: '111 Foxrun Street Conyers, GA 30012',
},
{
id: 4,
name: 'Ruby Burns',
name: 'Steve Wolfe',
specifity: 4,
rating: 5,
gps: {
latitude: 35.652832,
longitude: 139.839478,
},
imgUrl: ruby,
imgUrl: steve,
phone: '+X-XXX-XXX-XXXX',
address: '9 Wagon Street Ravenna, OH 44266',
},
Expand Down Expand Up @@ -104,8 +105,21 @@ export const getDoctorsData = (): Promise<Doctor[]> => {
},
{
id: 7,
name: 'Jorden Cannon',
name: 'Francisco Venancio',
specifity: 7,
rating: 5,
gps: {
latitude: 55.17111,
longitude: -118.796928,
},
imgUrl: francisco,
phone: '+X-XXX-XXX-XXXX',
address: '322 South Del Monte Rd. West Hempstead, NY 11552',
},
{
id: 8,
name: 'Jorden Cannon',
specifity: 8,
rating: 4,
gps: {
latitude: -22.908333,
Expand Down
Binary file modified src/assets/images/doctors/cameron-bell.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/doctors/francisco-venancio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/doctors/kayden-hunter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/doctors/ryan-thompson.png
Binary file not shown.
Binary file added src/assets/images/doctors/steve.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b6ba2a4

Please sign in to comment.