Skip to content

Commit a15cc0e

Browse files
Sita04koverholt
andauthored
docs(community): add ADK tutorial videos (#233)
Co-authored-by: Kristopher Overholt <[email protected]>
1 parent 7727dac commit a15cc0e

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

docs/community.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,33 @@ integrations here.*
2626

2727
## Videos & Screencasts
2828

29-
*Discover video walkthroughs, talks, and demos showcasing ADK.*
29+
Discover video walkthroughs, talks, and demos showcasing ADK.
30+
31+
<div class="video-grid">
32+
<div class="video-item">
33+
<div class="video-container">
34+
<iframe src="https://www.youtube-nocookie.com/embed/zgrOwow_uTQ?si=1xVxuZyW022Rq5ZC" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
35+
</div>
36+
</div>
37+
38+
<div class="video-item">
39+
<div class="video-container">
40+
<iframe src="https://www.youtube-nocookie.com/embed/44C8u0CDtSo?si=EkZu_m5O-fQPzORk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
41+
</div>
42+
</div>
43+
44+
<div class="video-item">
45+
<div class="video-container">
46+
<iframe src="https://www.youtube-nocookie.com/embed/efcUXoMX818?si=Dwez2zH8OSwf7Ktg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
47+
</div>
48+
</div>
49+
50+
<div class="video-item">
51+
<div class="video-container">
52+
<iframe src="https://www.youtube-nocookie.com/embed/hPzjkQFV5yI?si=GNbDQ1iqP4fok-SY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
53+
</div>
54+
</div>
55+
</div>
3056

3157
* **[Agent Development Kit (ADK) Masterclass: Build AI Agents & Automate Workflows (Beginner to Pro)](https://www.youtube.com/watch?v=P4VFL9nIaIA)**
3258

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ from simple tasks to complex workflows.
4040

4141
## Learn more
4242

43+
[:fontawesome-brands-youtube:{.youtube-red-icon} Watch "Introducing Agent Development Kit"!](https://www.youtube.com/watch?v=zgrOwow_uTQ target="_blank" rel="noopener noreferrer")
44+
4345
<div class="grid cards" markdown>
4446

4547
- :material-transit-connection-variant: **Flexible Orchestration**

docs/stylesheets/custom.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,14 @@
2424
.install-command-container { max-width: 600px; margin: 2.5em auto; padding: 1.5em 2em; background-color: var(--md-code-bg-color, #f5f5f5); border-radius: 8px; text-align: center; box-shadow: 0 3px 6px rgba(0,0,0,0.05); border-left: 5px solid var(--md-primary-fg-color, #526cfe); margin-top: 30px; }
2525
.install-command-container p { font-size: 1.1em; color: var(--md-default-fg-color); margin-bottom: -10px; margin-top: -10px; }
2626
.install-command-container p code { font-size: 1.1em; font-weight: 600; padding: 0.3em 0.6em; background-color: var(--md-code-fg-color--light); border-radius: 4px; display: inline-block; line-height: 1.4; }
27+
28+
/* Youtube Video Grid Layout - Community page*/
29+
.video-grid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 1.5em; margin-bottom: 1.5em; }
30+
/* For 3 items per row: 100% / 3 = 33.333% */
31+
.video-item { flex: 0 1 calc(33.333% - 13.333px); box-sizing: border-box; min-width: 250px; }
32+
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: #f0f0f0; border-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
33+
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
34+
@media (max-width: 992px) { .video-item { flex: 0 1 calc(50% - 10px); } }
35+
@media (max-width: 600px) { .video-item { flex: 0 1 100%; } }
36+
/* Youtube icon */
37+
.youtube-red-icon svg { fill: #FF0000 !important; }

0 commit comments

Comments
 (0)