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>
This commit is contained in:
20
projects/radio-show/website/src/pages/index.astro
Normal file
20
projects/radio-show/website/src/pages/index.astro
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||
import HeroSection from '../components/home/HeroSection.astro';
|
||||
import LatestEpisodes from '../components/home/LatestEpisodes.astro';
|
||||
import FeaturedClassics from '../components/home/FeaturedClassics.astro';
|
||||
import StatsSection from '../components/home/StatsSection.astro';
|
||||
import BlogHighlights from '../components/home/BlogHighlights.astro';
|
||||
import AboutPreview from '../components/home/AboutPreview.astro';
|
||||
import SubscribeCTA from '../components/home/SubscribeCTA.astro';
|
||||
---
|
||||
|
||||
<BaseLayout title="Home" description="The Computer Guru Show - Technology: Fun and Simple. Your source for making sense of the tech world, hosted by Mike Swanson from Tucson, Arizona.">
|
||||
<HeroSection />
|
||||
<LatestEpisodes />
|
||||
<FeaturedClassics />
|
||||
<StatsSection />
|
||||
<BlogHighlights />
|
||||
<AboutPreview />
|
||||
<SubscribeCTA />
|
||||
</BaseLayout>
|
||||
Reference in New Issue
Block a user