-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpodcast.html
More file actions
376 lines (331 loc) · 10.5 KB
/
podcast.html
File metadata and controls
376 lines (331 loc) · 10.5 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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="PersistenceAI Podcast - Discussions about AI development, coding agents, and software engineering">
<title>Podcast - PersistenceAI</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-primary: #0d1117;
--bg-secondary: #161b22;
--bg-tertiary: #1e1e1e;
--text-primary: #d4d4d4;
--text-secondary: #858585;
--accent: #4ec9b0;
--accent-bright: #00ff88;
--border: #3e3e3e;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
/* Header/Navigation */
header {
position: fixed;
top: 0;
left: 0;
right: 0;
background: var(--bg-primary);
border-bottom: 1px solid var(--border);
z-index: 1000;
padding: 1rem 2rem;
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.1rem;
font-weight: 600;
color: var(--accent);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s;
font-size: 0.95rem;
}
.nav-links a:hover {
color: var(--accent);
}
/* Main Content */
main {
margin-top: 80px;
padding: 3rem 2rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
h1 {
color: var(--accent);
font-size: 3rem;
margin-bottom: 1rem;
}
.subtitle {
color: var(--text-secondary);
font-size: 1.2rem;
margin-bottom: 3rem;
}
.episode-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.episode-card {
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.5rem;
transition: all 0.3s ease;
}
.episode-card:hover {
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(78, 201, 176, 0.1);
}
.episode-number {
color: var(--accent);
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.episode-title {
color: var(--text-primary);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
}
.episode-description {
color: var(--text-secondary);
font-size: 0.95rem;
margin-bottom: 1rem;
line-height: 1.6;
}
.episode-meta {
display: flex;
gap: 1rem;
color: var(--text-secondary);
font-size: 0.85rem;
margin-bottom: 1rem;
}
.audio-player {
width: 100%;
margin-top: 1rem;
}
.audio-player audio {
width: 100%;
height: 40px;
}
/* Video Section */
.intro-video-container {
margin: 3rem 0;
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.intro-video-header {
padding: 1rem 1.5rem;
background: var(--bg-tertiary);
border-bottom: 1px solid var(--border);
}
.intro-video-header h2 {
color: var(--accent);
font-size: 1.25rem;
margin: 0;
display: flex;
align-items: center;
gap: 0.5rem;
}
.intro-video-wrapper {
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
background: #000;
}
.intro-video-wrapper video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain;
}
.coming-soon {
text-align: center;
padding: 4rem 2rem;
color: var(--text-secondary);
}
.coming-soon h2 {
color: var(--accent);
font-size: 2rem;
margin-bottom: 1rem;
}
.coming-soon p {
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
/* Footer */
footer {
background: var(--bg-secondary);
border-top: 1px solid var(--border);
padding: 3rem 2rem;
text-align: center;
margin-top: 5rem;
}
.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--accent);
}
.footer-copyright {
color: var(--text-secondary);
font-size: 0.9rem;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.episode-grid {
grid-template-columns: 1fr;
}
.nav-links {
gap: 1rem;
font-size: 0.85rem;
}
.intro-video-container {
margin: 2rem 0;
}
.intro-video-header {
padding: 0.75rem 1rem;
}
.intro-video-header h2 {
font-size: 1.1rem;
}
}
</style>
</head>
<body>
<header>
<nav>
<a href="index.html" class="logo">
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2L2 7L12 12L22 7L12 2Z" fill="currentColor"/>
<path d="M2 17L12 22L22 17V12L12 17L2 12V17Z" fill="currentColor"/>
</svg>
PersistenceAI
</a>
<div class="nav-links">
<a href="index.html#quick-start">Quick Start</a>
<a href="index.html#features">Features</a>
<a href="index.html#install">Install</a>
<a href="docs/">Documentation</a>
<a href="podcast.html">Podcast</a>
<a href="https://github.com/Persistence-AI" target="_blank" rel="noopener">GitHub</a>
</div>
</nav>
</header>
<main>
<h1>🎙️ PersistenceAI Podcast</h1>
<p class="subtitle">Discussions about AI development, coding agents, and software engineering</p>
<!-- Introduction Video -->
<div class="intro-video-container">
<div class="intro-video-header">
<h2>
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<polygon points="5 3 19 12 5 21 5 3"/>
</svg>
Introduction Video
</h2>
</div>
<div class="intro-video-wrapper">
<video controls preload="metadata" poster="">
<source src="./assets/PersistenceAI__Your_Terminal_IDE.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="coming-soon">
<h2>Coming Soon</h2>
<p>
We're working on bringing you insightful discussions about AI development,
coding agents, multi-agent systems, and the future of software engineering.
Stay tuned for our first episode!
</p>
</div>
<!-- Episode cards will be added here when episodes are available -->
<!--
<div class="episode-grid">
<div class="episode-card">
<div class="episode-number">Episode 1</div>
<div class="episode-title">Introduction to Multi-Agent Systems</div>
<div class="episode-meta">
<span>📅 January 15, 2025</span>
<span>⏱️ 45 min</span>
</div>
<div class="episode-description">
In our first episode, we explore the fundamentals of multi-agent AI systems
and how they're revolutionizing software development.
</div>
<div class="audio-player">
<audio controls>
<source src="episodes/episode-1.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</div>
</div>
-->
</main>
<footer>
<div class="footer-links">
<a href="index.html">Home</a>
<a href="docs/">Documentation</a>
<a href="podcast.html">Podcast</a>
<a href="https://github.com/Persistence-AI/Landing">GitHub</a>
<a href="https://x.com/AiPersiste65218">Twitter/X</a>
<a href="mailto:PersistenceAI@proton.me">Contact</a>
</div>
<div class="footer-copyright">
© 2025 PersistenceAI. All rights reserved.
</div>
</footer>
</body>
</html>