@@ -162,7 +181,7 @@ function TrackDetail() {
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.2, duration: 0.4 }}
- className="bg-gradient-to-br from-gray-50 to-gray-100 rounded-2xl p-6 border border-gray-100"
+ className="bg-white rounded-2xl p-6 border border-gray-100 shadow-sm"
>
@@ -171,34 +190,40 @@ function TrackDetail() {
{track.lyricist && (
-
-
+
+
작사
-
{track.lyricist}
+
+ {formatCredit(track.lyricist)}
+
)}
{track.composer && (
-
-
+
+
작곡
-
{track.composer}
+
+ {formatCredit(track.composer)}
+
)}
{track.arranger && (
-
-
+
+
편곡
-
{track.arranger}
+
+ {formatCredit(track.arranger)}
+
)}
@@ -224,7 +249,7 @@ function TrackDetail() {
to={`/album/${encodeURIComponent(track.album?.title || albumName)}/track/${encodeURIComponent(t.title)}`}
className={`flex items-center gap-3 p-3 rounded-xl transition-all ${
t.title === track.title
- ? 'bg-gradient-to-r from-primary/10 to-primary/5 text-primary shadow-sm'
+ ? 'bg-primary/10 text-primary'
: 'hover:bg-gray-50'
}`}
>
@@ -258,19 +283,19 @@ function TrackDetail() {
transition={{ delay: 0.25, duration: 0.4 }}
className="col-span-2"
>
-