-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add cubism category and images
- Loading branch information
Showing
6 changed files
with
51 additions
and
22 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import FemmeAssise from '../../assets/images/cubism/PabloPicasso/FemmeAssise.jpg'; | ||
import LesDemoisellesdAvignon from '../../assets/images/cubism/PabloPicasso/LesDemoisellesdAvignon.jpg'; | ||
import { artists } from './artists-list'; | ||
|
||
export const cubismList = [ | ||
{ | ||
id: 5001, | ||
name: 'Femme Assise', | ||
img: FemmeAssise, | ||
artist: 'Pablo Picasso', | ||
date: '', | ||
description: '', | ||
location: '', | ||
countryCode: '', | ||
dimensions: '', | ||
style: '', | ||
artistInfo: artists['Pablo Picasso'] || {}, | ||
likes: 9, | ||
}, | ||
{ | ||
id: 5002, | ||
name: "Les Demoiselles d'Avignon", | ||
img: LesDemoisellesdAvignon, | ||
artist: 'Pablo Picasso', | ||
date: '1907', | ||
description: | ||
"Les Demoiselles d'Avignon is a groundbreaking work by Pablo Picasso that marks a radical break from traditional composition and perspective. This painting is seen as a precursor to Cubism and a pivotal work in the development of modern art.", | ||
location: 'Museum of Modern Art, New York City, USA', | ||
countryCode: 'US', | ||
dimensions: '243.9 cm x 233.7 cm', | ||
style: 'Cubism', | ||
artistInfo: artists['Pablo Picasso'] || {}, | ||
likes: 19, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters