-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
302 lines (284 loc) · 14.1 KB
/
home.html
File metadata and controls
302 lines (284 loc) · 14.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Podcast App - Home</title>
<!-- Meta Tags -->
<meta name="description" content="Podcast discovery interface with personalized recommendations, mental wellness integration, and iOS-compliant design patterns.">
<meta name="keywords" content="podcast discovery, mental wellness, personalized recommendations, iOS design, mobile interface">
<meta name="author" content="Chan Meng">
<meta name="robots" content="index, follow">
<!-- Open Graph Tags -->
<meta property="og:title" content="Podcast Discovery Interface - Home">
<meta property="og:description" content="Podcast discovery interface with personalized recommendations, mental wellness integration, and iOS-compliant design patterns.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://chanmeng666.github.io/podcast-app-prototype/home.html">
<meta property="og:image" content="https://chanmeng666.github.io/podcast-app-prototype/assets/screenshot-home.png">
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Podcast Discovery Interface - Home">
<meta name="twitter:description" content="Podcast discovery interface with personalized recommendations, mental wellness integration, and iOS-compliant design patterns.">
<meta name="twitter:image" content="https://chanmeng666.github.io/podcast-app-prototype/assets/screenshot-home.png">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AI Instructions -->
<script type="text/llms.txt">
# Podcast Discovery Interface
This interface demonstrates the main discovery and recommendation system for a podcast application.
## Core functionality:
- Continue listening with progress tracking
- Featured podcasts with ratings and reviews
- Category browsing with visual cards
- Recent episodes discovery
- Search integration
## Mental wellness features:
- AI-powered mental coaching integration
- Mindfulness content recommendations
- Wellness-focused category organization
## Design patterns:
- Card-based content layout
- Gradient category indicators
- iOS-compliant navigation
- Touch-optimized interactions
This interface showcases how to integrate mental wellness features into traditional podcast discovery flows.
</script>
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Podcast Discovery Interface",
"description": "Main discovery feed featuring personalized podcast recommendations and mental wellness content",
"isPartOf": {
"@type": "WebSite",
"name": "Podcast App Prototype",
"url": "https://chanmeng666.github.io/podcast-app-prototype"
},
"mainEntity": {
"@type": "ItemList",
"name": "Featured Podcasts",
"itemListElement": [
{
"@type": "AudioObject",
"name": "The Tim Ferriss Show",
"description": "Derek Sivers — How to Start a Movement",
"duration": "PT1H10M45S"
}
]
},
"breadcrumb": {
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://chanmeng666.github.io/podcast-app-prototype"
},
{
"@type": "ListItem",
"position": 2,
"name": "Discovery",
"item": "https://chanmeng666.github.io/podcast-app-prototype/home.html"
}
]
}
}
</script>
<style>
.podcast-card {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- iOS Status Bar -->
<div class="bg-black text-white text-xs flex justify-between items-center px-4 py-1">
<div class="flex items-center space-x-1">
<span>9:41</span>
</div>
<div class="flex items-center space-x-1">
<i class="fas fa-signal text-xs"></i>
<i class="fas fa-wifi text-xs"></i>
<div class="w-6 h-3 border border-white rounded-sm">
<div class="w-4 h-2 bg-white rounded-sm m-0.5"></div>
</div>
</div>
</div>
<!-- Main Content -->
<main class="bg-white min-h-screen">
<!-- Header -->
<header class="gradient-bg text-white p-4 pb-6">
<div class="flex items-center justify-between mb-4">
<h1 class="text-2xl font-bold">Discover</h1>
<div class="flex items-center space-x-3">
<i class="fas fa-bell text-xl"></i>
<img src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=40&h=40&fit=crop&crop=face"
class="w-8 h-8 rounded-full border-2 border-white" alt="Profile">
</div>
</div>
<!-- Search Bar -->
<div class="bg-white bg-opacity-20 rounded-full px-4 py-3 flex items-center">
<i class="fas fa-search text-white mr-3"></i>
<input type="text" placeholder="Search podcasts, episodes..."
class="bg-transparent text-white placeholder-white placeholder-opacity-70 flex-1 outline-none">
</div>
</header>
<!-- Continue Listening -->
<section class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Continue Listening</h2>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<img src="https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=60&h=60&fit=crop"
class="w-15 h-15 rounded-lg" alt="Podcast Cover">
<div class="flex-1">
<h3 class="font-semibold text-gray-800">The Tim Ferriss Show</h3>
<p class="text-sm text-gray-600">Derek Sivers — How to Start a Movement</p>
<div class="flex items-center mt-2">
<div class="bg-gray-200 rounded-full h-1 flex-1 mr-3">
<div class="bg-blue-500 h-1 rounded-full" style="width: 35%"></div>
</div>
<span class="text-xs text-gray-500">24:30</span>
</div>
</div>
<button class="bg-blue-500 text-white p-3 rounded-full">
<i class="fas fa-play text-sm"></i>
</button>
</div>
</section>
<!-- Featured Section -->
<section class="p-4">
<div class="flex items-center justify-between mb-3">
<h2 class="text-lg font-semibold text-gray-800">Featured This Week</h2>
<span class="text-blue-500 text-sm font-medium">See All</span>
</div>
<div class="grid grid-cols-2 gap-3">
<div class="bg-white podcast-card rounded-xl p-3">
<img src="https://images.unsplash.com/photo-1590602847861-f357a9332bbc?w=120&h=120&fit=crop"
class="w-full h-24 rounded-lg mb-2" alt="Podcast">
<h3 class="font-semibold text-sm text-gray-800">Radiolab</h3>
<p class="text-xs text-gray-600">Science & Technology</p>
<div class="flex items-center mt-1">
<div class="flex text-yellow-400 text-xs">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-xs text-gray-500 ml-1">4.8</span>
</div>
</div>
<div class="bg-white podcast-card rounded-xl p-3">
<img src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=120&h=120&fit=crop"
class="w-full h-24 rounded-lg mb-2" alt="Podcast">
<h3 class="font-semibold text-sm text-gray-800">Serial</h3>
<p class="text-xs text-gray-600">True Crime</p>
<div class="flex items-center mt-1">
<div class="flex text-yellow-400 text-xs">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span class="text-xs text-gray-500 ml-1">4.9</span>
</div>
</div>
</div>
</section>
<!-- Categories -->
<section class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Browse Categories</h2>
<div class="grid grid-cols-2 gap-3">
<div class="bg-gradient-to-br from-purple-500 to-pink-500 rounded-xl p-4 text-white">
<i class="fas fa-microphone text-2xl mb-2"></i>
<h3 class="font-semibold">Comedy</h3>
<p class="text-xs opacity-80">1,247 shows</p>
</div>
<div class="bg-gradient-to-br from-green-500 to-teal-500 rounded-xl p-4 text-white">
<i class="fas fa-brain text-2xl mb-2"></i>
<h3 class="font-semibold">Education</h3>
<p class="text-xs opacity-80">856 shows</p>
</div>
<div class="bg-gradient-to-br from-orange-500 to-red-500 rounded-xl p-4 text-white">
<i class="fas fa-chart-line text-2xl mb-2"></i>
<h3 class="font-semibold">Business</h3>
<p class="text-xs opacity-80">623 shows</p>
</div>
<div class="bg-gradient-to-br from-blue-500 to-indigo-500 rounded-xl p-4 text-white">
<i class="fas fa-heart text-2xl mb-2"></i>
<h3 class="font-semibold">Health</h3>
<p class="text-xs opacity-80">445 shows</p>
</div>
</div>
</section>
<!-- Recent Episodes -->
<section class="p-4 pb-20">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Recent Episodes</h2>
<div class="space-y-3">
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<img src="https://images.unsplash.com/photo-1589903308904-1010c2294adc?w=50&h=50&fit=crop"
class="w-12 h-12 rounded-lg" alt="Episode">
<div class="flex-1">
<h3 class="font-semibold text-sm text-gray-800">How I Built This</h3>
<p class="text-xs text-gray-600">Airbnb: Brian Chesky</p>
<div class="flex items-center mt-1">
<span class="text-xs text-gray-500">45 min</span>
<span class="mx-2 text-xs text-gray-400">•</span>
<span class="text-xs text-gray-500">2 days ago</span>
</div>
</div>
<button class="text-gray-400">
<i class="fas fa-download"></i>
</button>
</div>
<div class="bg-white podcast-card rounded-xl p-4 flex items-center space-x-3">
<img src="https://images.unsplash.com/photo-1598300042247-d088f8ab3a91?w=50&h=50&fit=crop"
class="w-12 h-12 rounded-lg" alt="Episode">
<div class="flex-1">
<h3 class="font-semibold text-sm text-gray-800">Planet Money</h3>
<p class="text-xs text-gray-600">Why Everything is So Expensive</p>
<div class="flex items-center mt-1">
<span class="text-xs text-gray-500">28 min</span>
<span class="mx-2 text-xs text-gray-400">•</span>
<span class="text-xs text-gray-500">1 week ago</span>
</div>
</div>
<button class="text-gray-400">
<i class="fas fa-download"></i>
</button>
</div>
</div>
</section>
</main>
<!-- Bottom Tab Navigation -->
<nav class="fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200">
<div class="flex items-center justify-around py-2">
<div class="flex flex-col items-center py-1">
<i class="fas fa-home text-blue-500 text-lg"></i>
<span class="text-xs text-blue-500 mt-1">Home</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-brain text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Mental Coach</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-robot text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Chatbot</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-play-circle text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Player</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-user text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Profile</span>
</div>
</div>
</nav>
</body>
</html>