Files
claudetools/projects/radio-show/website/src/pages/live.astro
Mike Swanson ee89727662 Radio show website: Full Astro build with 194 episodes imported
Complete website for The Computer Guru Show (radio.azcomputerguru.com):
- Astro 6.0.4 static site with React islands
- 194 episodes imported from gurushow.com RSS feed
- Dark/light mode HSL design system
- Persistent audio player with session persistence
- Episode archive with search and season filtering
- Home page with animated hero, stats, latest episodes
- All pages: About, Subscribe, Community, Live, Contact, Blog, 404
- Podcast RSS feed with iTunes namespace
- Session log updated

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-14 20:44:42 -07:00

250 lines
7.6 KiB
Plaintext

---
import BaseLayout from '../layouts/BaseLayout.astro';
---
<BaseLayout title="Live" description="Watch The Computer Guru Show live and interact in real-time.">
<!-- Hero -->
<section class="hero section">
<div class="container">
<span class="badge fade-in">Live</span>
<h1 class="hero__title fade-in">Live Show</h1>
<p class="hero__subtitle fade-in">
The Computer Guru Show streams live. Check back for schedule details.
</p>
</div>
</section>
<!-- Status -->
<section class="section">
<div class="container">
<div class="status-card card fade-in">
<div class="status-indicator">
<span class="status-dot status-dot--offline" aria-hidden="true"></span>
<span class="status-label">Currently Off Air</span>
</div>
<p class="status-desc">
The show is not currently live. Subscribe to get notified when we go live, or check the schedule below.
</p>
</div>
</div>
</section>
<!-- Schedule -->
<section class="section">
<div class="container">
<h2 class="section__title fade-in">Show Schedule</h2>
<div class="schedule-card card fade-in">
<div class="schedule-placeholder">
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>
<p>Schedule coming soon</p>
<span class="schedule-note">Show times will be announced here once the schedule is finalized.</span>
</div>
<div class="schedule-table" aria-label="Schedule placeholder">
<div class="schedule-row schedule-row--header">
<span>Day</span>
<span>Time (MST)</span>
<span>Format</span>
</div>
<div class="schedule-row schedule-row--empty">
<span colspan="3">To be announced</span>
</div>
</div>
</div>
</div>
</section>
<!-- When Live -->
<section class="section">
<div class="container">
<h2 class="section__title fade-in">When We Are Live</h2>
<div class="grid grid--2">
<div class="card live-feature fade-in">
<div class="live-feature__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="23 7 16 12 23 17 23 7"/><rect x="1" y="5" width="15" height="14" rx="2" ry="2"/></svg>
</div>
<h3>Live Stream</h3>
<p>Watch the show in real-time with video and audio right here on the site.</p>
<div class="live-feature__placeholder">
<span>Player will appear here during live broadcasts</span>
</div>
</div>
<div class="card live-feature fade-in">
<div class="live-feature__icon">
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/></svg>
</div>
<h3>Live Chat</h3>
<p>Chat with other listeners and interact with the host during the live show via Discord.</p>
<div class="live-feature__placeholder">
<span>Discord chat will be embedded here during live broadcasts</span>
</div>
</div>
</div>
</div>
</section>
<!-- Archive Reminder -->
<section class="section">
<div class="container">
<div class="archive-cta card fade-in">
<h2>Catch Up on Past Episodes</h2>
<p>Browse all 194 episodes from the complete archive while you wait for the next live show.</p>
<a href="/episodes" class="btn btn--primary">Browse Episodes</a>
</div>
</div>
</section>
</BaseLayout>
<style>
.hero {
text-align: center;
padding-block: var(--space-16) var(--space-8);
}
.hero__title {
font-size: var(--text-4xl);
margin-top: var(--space-4);
margin-bottom: var(--space-4);
}
.hero__subtitle {
font-size: var(--text-lg);
color: var(--color-text-secondary);
max-width: 520px;
margin-inline: auto;
}
/* Status Card */
.status-card {
max-width: 600px;
margin-inline: auto;
text-align: center;
padding: var(--space-8);
}
.status-indicator {
display: flex;
align-items: center;
justify-content: center;
gap: var(--space-3);
margin-bottom: var(--space-4);
}
.status-dot {
width: 12px;
height: 12px;
border-radius: 50%;
flex-shrink: 0;
}
.status-dot--offline {
background: var(--color-text-muted);
box-shadow: 0 0 6px hsl(220 6% 48% / 0.4);
}
.status-dot--live {
background: var(--color-danger);
box-shadow: 0 0 8px hsl(0 75% 55% / 0.5);
animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.status-label {
font-size: var(--text-lg);
font-weight: 600;
color: var(--color-text-secondary);
}
.status-desc {
color: var(--color-text-muted);
font-size: var(--text-sm);
}
/* Schedule */
.schedule-card {
max-width: 600px;
margin-inline: auto;
padding: var(--space-8);
}
.schedule-placeholder {
text-align: center;
color: var(--color-text-muted);
margin-bottom: var(--space-6);
}
.schedule-placeholder svg {
margin-bottom: var(--space-3);
color: var(--color-accent);
}
.schedule-placeholder p {
font-size: var(--text-lg);
font-weight: 600;
color: var(--color-text-secondary);
margin-bottom: var(--space-2);
}
.schedule-note {
font-size: var(--text-xs);
color: var(--color-text-muted);
}
.schedule-table {
border-top: 1px solid var(--color-border);
padding-top: var(--space-4);
}
.schedule-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
padding: var(--space-3) var(--space-4);
font-size: var(--text-sm);
}
.schedule-row--header {
font-weight: 600;
color: var(--color-text-muted);
text-transform: uppercase;
font-size: var(--text-xs);
letter-spacing: 0.05em;
border-bottom: 1px solid var(--color-border);
}
.schedule-row--empty {
color: var(--color-text-muted);
font-style: italic;
text-align: center;
padding: var(--space-6);
}
/* Live Features */
.live-feature {
text-align: center;
padding: var(--space-8) var(--space-6);
}
.live-feature__icon {
color: var(--color-accent);
margin-bottom: var(--space-4);
}
.live-feature h3 {
font-size: var(--text-lg);
margin-bottom: var(--space-3);
}
.live-feature p {
color: var(--color-text-secondary);
font-size: var(--text-sm);
margin-bottom: var(--space-6);
}
.live-feature__placeholder {
background: var(--color-bg-tertiary);
border: 1px dashed var(--color-border);
border-radius: var(--radius-sm);
padding: var(--space-8) var(--space-4);
color: var(--color-text-muted);
font-size: var(--text-xs);
}
/* Archive CTA */
.archive-cta {
max-width: 600px;
margin-inline: auto;
text-align: center;
padding: var(--space-12) var(--space-8);
}
.archive-cta h2 {
margin-bottom: var(--space-3);
}
.archive-cta p {
color: var(--color-text-secondary);
font-size: var(--text-sm);
margin-bottom: var(--space-6);
}
</style>