Skip to content

Commit 402e1ca

Browse files
committed
new(log)
1 parent 42bd8ae commit 402e1ca

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

public/logs/logs.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
[
2+
{
3+
"artist": "Morcheeba",
4+
"category": "Music",
5+
"date": "2025-11-03",
6+
"link": "https://www.youtube.com/watch?v=27lPAUdE1ys",
7+
"rating": 5,
8+
"slug": "morcheeba-easier-said-than-done",
9+
"title": "Easier Said Than Done"
10+
},
211
{
312
"category": "Tools",
413
"date": "2025-11-03",
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Easier Said Than Done
2+
3+
- **Category:** Music
4+
- **Artist:** Morcheeba
5+
- **Album:** Blood Like Lemonade
6+
- **Release Date:** 2010-06-07
7+
- **Date:** 2025-11-03
8+
- **Rating:** 5/5
9+
- **Link:** [YouTube](https://www.youtube.com/watch?v=27lPAUdE1ys)
10+
11+
## About
12+
13+
**Morcheeba** is a British electronic band formed in 1995 with members Skye Edwards, Paul Godfrey, and Ross Godfrey. They blend trip-hop, R&B, and pop influences.
14+
15+
**Skye Edwards' Return**: "Blood Like Lemonade" marked the significant return of lead singer Skye Edwards to Morcheeba, who had previously left the band in 2003. Her distinctive vocals are a prominent feature of the track.
16+
17+
**Lyrical Theme**: The song's lyrics delve into the common human experience of knowing what needs to be done, such as letting go or trusting oneself, but finding it challenging to actually execute those actions. The phrase "It's easier said than done" encapsulates this theme of difficulty in translating intention into action.
18+
19+
**Album Success**: The album "Blood Like Lemonade," which includes "Easier Said Than Done," achieved commercial success, earning a silver certification from the Independent Music Companies Association in 2010 for selling over 30,000 copies in Europe. It was later upgraded to gold certification in 2011 for exceeding 75,000 copies sold across Europe.

src/components/LogCard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const LogCard = ({ log, index, totalLogs }) => {
116116
className="group bg-transparent border rounded-lg shadow-lg p-6 flex flex-col justify-between relative transform transition-all duration-300 ease-in-out hover:scale-105 hover:shadow-2xl overflow-hidden h-full"
117117
style={cardStyle}
118118
>
119-
<div className="absolute top-2 right-2 text-lg font-semibold px-2 py-1 rounded-md border overflow-hidden whitespace-nowrap" style={{ backgroundColor: 'rgba(0, 0, 0, 0.2)', color: cardStyle.textColor, borderColor: cardStyle.borderColor }}>
119+
<div className="absolute top-3 right-3 text-lg font-semibold px-2 py-1 rounded-md border overflow-hidden whitespace-nowrap" style={{ backgroundColor: 'rgba(0, 0, 0, 0.2)', color: cardStyle.textColor, borderColor: cardStyle.borderColor }}>
120120
#{totalLogs - index}
121121
</div>
122122
<div
@@ -128,7 +128,7 @@ const LogCard = ({ log, index, totalLogs }) => {
128128
}}
129129
></div>
130130
<div>
131-
<div className="flex items-center justify-between mb-4 pr-8">
131+
<div className="flex items-center justify-between mb-4 pr-10">
132132
<div className="flex items-center">
133133
<div className="text-2xl mr-4" style={{ color: detailTextColor }}>{categoryIcons[category]}</div>
134134
<h2

0 commit comments

Comments
 (0)