Update Bandcamp section with Tony Gerber's Ice Drones

This commit is contained in:
Agent Zero
2026-02-15 14:56:23 +00:00
parent dbaa19f6ed
commit 660d514d7b
7 changed files with 167 additions and 35 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
dist/assets/index-CghgAX7R.js.map vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/index.html vendored
View File

@@ -9,8 +9,8 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Inter:wght@200;300;400&display=swap" rel="stylesheet">
<script type="module" crossorigin src="./assets/index-D-AgJWO7.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DcGNYbHU.css">
<script type="module" crossorigin src="./assets/index-CghgAX7R.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-B9scD9qE.css">
</head>
<body>
<div id="root"></div>

View File

@@ -1,30 +1,44 @@
interface BandcampSectionProps {
bandcampUrl?: string;
}
export default function BandcampSection({
bandcampUrl = "https://bandcamp.com/EmbeddedPlayer/track=123456789/size=large/bgcol=111114/linkcol=6b4c9a/tracklist=false/artwork=small/transparent=true/"
}: BandcampSectionProps) {
export default function BandcampSection() {
return (
<section id="listen" className="bandcamp-section">
<div className="section-content">
<h2>listen</h2>
<div className="bandcamp-embed">
<iframe
src={bandcampUrl}
seamless
frameBorder="0"
width="100%"
height="360"
title="Bandcamp Player"
/>
<div className="album-showcase">
<div className="album-artwork">
<div className="artwork-placeholder">
<svg viewBox="0 0 100 100" fill="none" stroke="currentColor" strokeWidth="0.5">
<circle cx="50" cy="50" r="45" />
<circle cx="50" cy="50" r="30" />
<circle cx="50" cy="50" r="15" />
</svg>
</div>
</div>
<div className="album-details">
<h3>Featured Release</h3>
<p className="album-title">Ice Drones</p>
<p className="album-artist">by Tony Gerber</p>
<p className="album-description">
Atmospheric soundscapes and frozen textures that evoke the stark beauty of winter landscapes.
</p>
<a
href="https://tonygerber.bandcamp.com/album/ice-drones"
target="_blank"
rel="noopener noreferrer"
className="bandcamp-link"
>
<svg viewBox="0 0 24 24" fill="currentColor" width="20" height="20">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z"/>
</svg>
Listen on Bandcamp
</a>
</div>
</div>
<div className="release-info">
<h3>Latest Release</h3>
<p className="album-title">Resonant Frequencies</p>
<p className="album-meta">EP · 2026 · 4 tracks · 48 minutes</p>
<div className="bandcamp-note">
<p>Explore the full album and support the artist directly on Bandcamp</p>
</div>
</div>
</section>

View File

@@ -403,3 +403,121 @@ section h2 {
grid-template-columns: 1fr;
}
}
/* Album Showcase */
.album-showcase {
display: grid;
grid-template-columns: 300px 1fr;
gap: 3rem;
align-items: center;
max-width: 900px;
margin: 0 auto;
}
.album-artwork {
display: flex;
justify-content: center;
}
.artwork-placeholder {
width: 250px;
height: 250px;
background: linear-gradient(135deg,
var(--accent-purple) 0%,
var(--accent-blue) 100%);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 60px rgba(107, 76, 154, 0.3);
}
.artwork-placeholder svg {
width: 120px;
height: 120px;
color: rgba(255, 255, 255, 0.3);
}
.album-details {
text-align: left;
}
.album-details h3 {
font-size: 1rem;
color: var(--accent-purple);
letter-spacing: 0.3em;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.album-title {
font-family: 'Cormorant Garamond', serif;
font-size: 3rem;
color: var(--text-primary);
margin-bottom: 0.25rem;
line-height: 1;
}
.album-artist {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 1.5rem;
}
.album-description {
font-size: 1rem;
line-height: 1.7;
color: var(--text-muted);
margin-bottom: 2rem;
font-weight: 300;
}
.bandcamp-link {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem 2rem;
background: transparent;
border: 1px solid var(--accent-purple);
border-radius: 4px;
color: var(--text-primary);
text-decoration: none;
font-size: 0.9rem;
letter-spacing: 0.1em;
text-transform: uppercase;
transition: all 0.3s ease;
}
.bandcamp-link:hover {
background: var(--accent-purple);
box-shadow: 0 0 30px rgba(107, 76, 154, 0.4);
}
.bandcamp-note {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(107, 76, 154, 0.2);
}
.bandcamp-note p {
font-size: 0.85rem;
color: var(--text-muted);
font-style: italic;
}
@media (max-width: 768px) {
.album-showcase {
grid-template-columns: 1fr;
gap: 2rem;
text-align: center;
}
.album-details {
text-align: center;
}
.album-title {
font-size: 2rem;
}
}