Skip to content

Commit

Permalink
chore: update unique IDs in lists
Browse files Browse the repository at this point in the history
  • Loading branch information
kyziq committed Jan 7, 2024
1 parent c23bc6a commit 8efa708
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/data/list/abstracts-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { artists } from './artists-list';

export const abstractsList = [
{
id: 1,
id: 1001,
name: 'False Start',
img: FalseStart,
artist: 'Jasper Johns',
Expand All @@ -17,7 +17,7 @@ export const abstractsList = [
artistInfo: artists['Jasper Johns'] || {},
},
{
id: 2,
id: 1002,
name: 'Interchange',
img: Interchange,
artist: 'Willem de Kooning',
Expand Down
6 changes: 3 additions & 3 deletions src/data/list/landscapes-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { artists } from './artists-list.js';

export const landscapesList = [
{
id: 1,
id: 2001,
name: 'Starry Night',
img: StarryNight,
artist: 'Vincent Van Gogh',
Expand All @@ -18,7 +18,7 @@ export const landscapesList = [
artistInfo: artists['Vincent Van Gogh'] || {},
},
{
id: 2,
id: 2002,
name: 'Mr and Mrs Andrews',
img: MrAndMrsAndrews,
artist: 'Thomas Gainsborough',
Expand All @@ -30,7 +30,7 @@ export const landscapesList = [
style: 'Rococo',
},
{
id: 3,
id: 2003,
name: 'The Blue Boy',
img: TheBlueBoy,
artist: 'Thomas Gainsborough',
Expand Down
8 changes: 4 additions & 4 deletions src/data/list/paintings-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { artists } from './artists-list.js';

export const paintingsList = [
{
id: 1,
id: 3001,
name: 'Meules',
img: Meules,
artist: 'Claude Monet',
Expand All @@ -19,7 +19,7 @@ export const paintingsList = [
artistInfo: artists['Claude Monet'] || {},
},
{
id: 2,
id: 3002,
name: "Les Demoiselles d'Avignon",
img: LesDemoisellesdAvignon,
artist: 'Pablo Picasso',
Expand All @@ -32,7 +32,7 @@ export const paintingsList = [
artistInfo: artists['Pablo Picasso'] || {},
},
{
id: 3,
id: 3003,
name: 'Garden Of Joy',
img: GardenOfJoy,
artist: 'Mariam Omar',
Expand All @@ -44,7 +44,7 @@ export const paintingsList = [
style: 'Floral',
},
{
id: 4,
id: 3004,
name: 'Gadis Picnic',
img: GadisPicnic,
artist: 'Mariam Omar',
Expand Down
6 changes: 3 additions & 3 deletions src/data/list/portraits-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { artists } from './artists-list.js';

export const portraitsList = [
{
id: 1,
id: 4001,
name: 'Mona Lisa',
img: MonaLisa,
artist: 'Leonardo Da Vinci',
Expand All @@ -18,7 +18,7 @@ export const portraitsList = [
artistInfo: artists['Leonardo Da Vinci'] || {},
},
{
id: 2,
id: 4002,
name: "Whistler's Mother",
img: WhistlersMother,
artist: 'James Abbott McNeill Whistler',
Expand All @@ -31,7 +31,7 @@ export const portraitsList = [
artistInfo: artists['James Abbott McNeill Whistler'] || {},
},
{
id: 3,
id: 4003,
name: 'Girl with a Pearl Earring',
img: GirlWithAPearlEarring,
artist: 'Johannes Vermeer',
Expand Down

0 comments on commit 8efa708

Please sign in to comment.