-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
273 lines (241 loc) · 11.6 KB
/
index.html
File metadata and controls
273 lines (241 loc) · 11.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TBBNZLL5WY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TBBNZLL5WY');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<title>Agents at Work - The AI Agents Podcast</title>
<meta name="description" content="Explore the latest breakthroughs in AI and Agent Technology with Agents at Work podcast - featuring interviews with industry leaders and deep dives into emerging AI agent capabilities.">
<meta name="keywords" content="AI agents, artificial intelligence, AI podcast, agent technology, AI automation, AI assistants">
<!-- Open Graph / Social Media Tags -->
<meta property="og:title" content="Agents at Work - The AI Agents Podcast">
<meta property="og:description" content="Explore the latest breakthroughs in AI and Agent Technology with in-depth interviews and analysis.">
<meta property="og:image" content="https://icons-8e9.pages.dev/agents-at-work-small.jpg">
<meta property="og:url" content="https://yourwebsite.com">
<meta property="og:type" content="website">
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Agents at Work - The AI Agents Podcast">
<meta name="twitter:description" content="Explore the latest breakthroughs in AI and Agent Technology.">
<meta name="twitter:image" content="https://icons-8e9.pages.dev/agents-at-work-small.jpg">
<!-- Favicon -->
<link rel="icon" href="https://icons-8e9.pages.dev/favicon.ico">
<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=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Podcast Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "PodcastSeries",
"name": "Agents at Work",
"description": "A podcast where we discuss the latest news and breakthroughs in AI and Agent Technology.",
"url": "https://agents-at-work.dev",
"image": "https://icons-8e9.pages.dev/agents-at-work-small.jpg",
"publisher": {
"@type": "Organization",
"name": "Agents at Work",
"logo": {
"@type": "ImageObject",
"url": "https://icons-8e9.pages.dev/agents-at-work-small.jpg"
}
},
"sameAs": [
"https://www.youtube.com/playlist?list=PLeVLmyUq90f_ilFVfqnONalzdzUfAf-xr",
"https://open.spotify.com/show/0D4EymLDhAs9sr7CUaMTHa",
"https://x.com/Fewsats",
"https://discord.gg/2tPYBgWzQm"
]
}
</script>
<style>
:root {
--bg-color: #1e2d4a;
--text-color: #ffffff;
--text-secondary: rgba(255, 255, 255, 0.7);
--accent-color: #e15b42;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 2rem;
line-height: 1.6;
position: relative;
background-image: url('https://icons-8e9.pages.dev/background.png');
background-repeat: repeat;
background-color: var(--bg-color);
}
.container {
max-width: 600px;
width: 100%;
text-align: center;
position: relative;
z-index: 2;
}
.logo {
width: 360px;
height: 360px;
border-radius: 12px;
margin-bottom: 2rem;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.1;
letter-spacing: -0.03em;
}
.description {
font-size: 1rem;
color: var(--text-secondary);
margin-bottom: 1rem;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.social-links {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
max-width: 400px;
margin: 0 auto;
}
.social-link {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: var(--text-color);
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 1rem;
transition: all 0.3s ease;
position: relative;
}
.social-link:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.social-link svg {
width: 24px;
height: 24px;
margin-right: 10px;
fill: currentColor;
}
.copyright {
margin-top: 1.5rem;
font-size: 0.85rem;
color: var(--text-secondary);
opacity: 0.7;
}
.footer-links {
margin-top: 3rem;
text-align: center;
display: flex;
justify-content: center;
gap: 2rem;
}
.footer-links p {
margin: 0;
}
.text-link {
color: var(--text-color);
text-decoration: none;
border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
transition: border-color 0.2s ease;
font-size: 0.95rem;
padding-bottom: 2px;
}
.text-link:hover {
border-bottom: 1px solid var(--text-color);
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
.description {
font-size: 1.1rem;
}
.social-links {
grid-template-columns: 1fr;
}
.footer-links {
flex-direction: column;
gap: 1rem;
}
}
@media (max-width: 480px) {
.logo {
width: 180px;
height: 180px;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container">
<img src="https://icons-8e9.pages.dev/agents-at-work-small.jpg" alt="Agents at Work Podcast Logo" class="logo">
<h1>Agents at Work</h1>
<p class="description">A podcast exploring breakthroughs in AI agents and autonomous systems. Will AI take my job? Should I still learn to code? Are we getting closer to AGI?</p>
<p class="description">Tune in as we dive into topics like AI automation, workflow orchestration, and the future of human-AI collaboration.</p>
<div class="social-links">
<a href="https://www.youtube.com/playlist?list=PLeVLmyUq90f_ilFVfqnONalzdzUfAf-xr" class="social-link" target="_blank">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" fill="#fff"/>
</svg>
<span>YouTube</span>
</a>
<a href="https://open.spotify.com/show/0D4EymLDhAs9sr7CUaMTHa" class="social-link" target="_blank">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.48.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3z" fill="#fff"/>
</svg>
<span>Spotify</span>
</a>
<a href="https://x.com/Fewsats" class="social-link" target="_blank">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z" fill="#fff"/>
</svg>
</a>
<a href="https://discord.gg/2tPYBgWzQm" class="social-link" target="_blank">
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z" fill="#fff"/>
</svg>
<span>Discord</span>
</a>
</div>
<div class="footer-links">
<p><a href="/what-is-an-ai-agent.html" class="text-link">What is an AI Agent?</a></p>
<p>Want to be a guest? <a href="https://x.com/positiveblue2" target="_blank" class="text-link">Reach out</a></p>
</div>
<p class="copyright">© 2025 Agents at Work</p>
</div>
</body>
</html>