Skip to content

Commit 1fe387b

Browse files
committed
vocab: murakami
1 parent 5b7e0d4 commit 1fe387b

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

public/images/takashi-murakami.jpg

168 KB
Loading

public/logs/music/kids-see-ghosts.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ It debuted at number two on the US Billboard 200 and was widely regarded as one
2424
## Trivia
2525

2626
* **Wyoming Sessions:** The album was recorded in Wyoming during the same period as Kanye West's *Ye* and Pusha T's *Daytona*, contributing to what became known as the "Wyoming Sessions."
27-
* **Album Art:** The album's distinctive cover art was designed by contemporary Japanese artist **Takashi Murakami**.
27+
* **Album Art:** The album's distinctive cover art was designed by contemporary Japanese artist [Takashi Murakami](/#/vocab/murakami).
2828
* **Critical Acclaim:** *KIDS SEE GHOSTS* received widespread critical acclaim, with many praising its unique sound and emotional depth.

src/data/vocab/murakami.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react';
2+
3+
export default function Murakami() {
4+
return (
5+
<div className="space-y-4">
6+
<img src="/images/takashi-murakami.jpg" alt="Takashi Murakami" className="w-full h-auto max-w-xs mx-auto rounded-lg shadow-lg" />
7+
<p>
8+
<strong>Murakami, Takashi</strong> (村上 隆, Murakami Takashi) is a highly influential contemporary Japanese artist, often referred to as the "Andy Warhol of Japan."
9+
</p>
10+
<p>
11+
He is renowned for his vibrant, anime-inspired "Superflat" art movement, which skillfully blurs the lines between fine art and popular culture. His distinctive style draws heavily from traditional Japanese art forms, otaku culture, and consumerism, frequently featuring smiling flowers, cartoon-like characters, and a bold, colorful palette.
12+
</p>
13+
<div className="bg-gray-800 p-4 rounded-lg border border-gray-700 text-sm text-gray-300">
14+
<p>
15+
Murakami's notable collaborations include designing the album cover art for Kanye West's 2007 album <em>Graduation</em>
16+
and the 2018 Kids See Ghosts album (a joint project by Kanye West and Kid Cudi).
17+
</p>
18+
</div>
19+
</div>
20+
);
21+
}

src/data/vocabulary.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,8 @@ export const vocabulary = {
3131
title: 'Game of the Year (GOTY)',
3232
loader: () => import('./vocab/game-of-the-year'),
3333
},
34+
'murakami': {
35+
title: 'Murakami, Takashi',
36+
loader: () => import('./vocab/murakami'),
37+
},
3438
};

0 commit comments

Comments
 (0)