feat: 샘플 갤러리 별도 페이지 + 메인은 TOP 1개만

- /services/music/samples 신규: 6개 장르 샘플 갤러리 + 구매 CTA
- 음악 페이지 #samples 섹션: 가장 인기 1개(featured)만 노출 + 갤러리 링크
- TopNav/Hero 보조 CTA '샘플' → /services/music/samples 로 통일

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-15 03:15:33 +09:00
parent cf29caa67a
commit 3aeec8b323
4 changed files with 125 additions and 20 deletions

View File

@@ -296,31 +296,34 @@ export default function MusicServicePage() {
<section id="samples" className="px-6 py-20 lg:px-14 bg-[#0b0530]">
<div className="max-w-5xl mx-auto">
<p className="font-mono text-xs text-violet-300/70 tracking-widest uppercase mb-2">
Sample Showcase
Most Popular Sample
</p>
<h2 className="text-3xl md:text-4xl font-extrabold mb-3">
, .
</h2>
<p className="text-slate-400 mb-10">30 .</p>
<p className="text-slate-400 mb-10"> 1. .</p>
<div className="grid sm:grid-cols-3 gap-4">
{[1, 2, 3].map((i) => (
<div
key={i}
className="aspect-[9/16] rounded-2xl border border-white/10 bg-gradient-to-br from-violet-900/40 to-slate-900 flex items-center justify-center relative overflow-hidden group cursor-pointer"
>
<div className="absolute inset-0 bg-gradient-to-br from-violet-500/10 to-cyan-500/10 group-hover:from-violet-500/20 group-hover:to-cyan-500/20 transition-all" />
<div className="relative text-center p-6">
<div className="text-5xl mb-3">🎬</div>
<p className="text-xs text-slate-400 font-mono">Sample {i}</p>
<p className="text-sm text-slate-200 mt-1"> </p>
</div>
<div className="max-w-sm mx-auto mb-8">
<div className="aspect-[9/16] rounded-2xl border border-violet-400/30 bg-gradient-to-br from-violet-900/50 to-slate-900 flex items-center justify-center relative overflow-hidden group cursor-pointer shadow-2xl shadow-violet-900/40">
<div className="absolute inset-0 bg-gradient-to-br from-violet-500/15 to-cyan-500/15 group-hover:from-violet-500/30 group-hover:to-cyan-500/30 transition-all" />
<div className="relative text-center p-6">
<div className="text-6xl mb-4">🎬</div>
<p className="text-xs text-violet-300/80 font-mono tracking-widest">FEATURED</p>
<p className="text-base text-slate-100 mt-2 font-semibold">TOP ( )</p>
<p className="text-xs text-slate-400 mt-1"> </p>
</div>
))}
</div>
</div>
<div className="text-center">
<a
href="/services/music/samples"
className="inline-flex items-center gap-2 px-6 py-3 rounded-full border border-violet-400/40 bg-violet-500/10 hover:bg-violet-500/20 text-sm font-semibold text-violet-200 transition"
>
<span aria-hidden></span>
</a>
</div>
<p className="text-xs text-slate-500 mt-6 text-center">
. .
</p>
</div>
</section>