Skip to content

Commit c61a7a1

Browse files
committed
chore: add youtube url
1 parent 59834ab commit c61a7a1

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

src/components/ActionButtons.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ import { siArxiv, siGithub, siHuggingface, siDatadog, siYoutube } from 'simple-i
5151
</svg>
5252
Arxiv
5353
</a>
54-
<a href="https://youtube.com" target="_blank" rel="noopener noreferrer" class="bg-white bg-opacity-90 backdrop-blur-sm border-2 border-gray-300 text-gray-700 px-6 py-3 rounded-full font-medium hover:bg-opacity-100 hover:border-black hover:text-black transition-all duration-300 flex items-center gap-2 shadow-lg">
54+
<a href="https://youtu.be/n129VDqJCk4" target="_blank" rel="noopener noreferrer" class="bg-white bg-opacity-90 backdrop-blur-sm border-2 border-gray-300 text-gray-700 px-6 py-3 rounded-full font-medium hover:bg-opacity-100 hover:border-black hover:text-black transition-all duration-300 flex items-center gap-2 shadow-lg">
5555
<svg class="w-5 h-5 video-red" fill="currentColor" viewBox="0 0 24 24">
5656
<path d={siYoutube.path}/>
5757
</svg>

src/pages/index.astro

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ import { getAssetPath } from "../utils/assetPath";
2525
<meta name="viewport" content="width=device-width" />
2626
<meta name="generator" content={Astro.generator} />
2727
<title>
28-
InternVLA-M1: Latent Spatial Grounding for Instruction-Following Robotic Manipulation
28+
InternVLA-M1: Latent Spatial Grounding for Instruction-Following
29+
Robotic Manipulation
2930
</title>
3031
<meta
3132
name="description"
@@ -92,6 +93,23 @@ import { getAssetPath } from "../utils/assetPath";
9293
<section class="py-8">
9394
<div class="max-w-6xl mx-auto px-8">
9495
<Abstract />
96+
<div class="bg-white rounded-lg shadow-sm p-6 mb-6">
97+
<div
98+
class="relative w-full"
99+
style="padding-bottom: 56.25%; /* 16:9 aspect ratio */"
100+
>
101+
<iframe
102+
class="absolute top-0 left-0 w-full h-full rounded-lg"
103+
src="https://www.youtube.com/embed/n129VDqJCk4?si=Z6MK8TG0iA88Ycbb"
104+
title="InternVLA-M1 Demo Video"
105+
frameborder="0"
106+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
107+
referrerpolicy="strict-origin-when-cross-origin"
108+
allowfullscreen
109+
>
110+
</iframe>
111+
</div>
112+
</div>
95113
<ModelOverview />
96114
<ReasoningDemo />
97115
</div>

0 commit comments

Comments
 (0)