Spaces:
Running
Running
Update index.html
Browse files- index.html +16 -0
index.html
CHANGED
@@ -195,6 +195,22 @@
|
|
195 |
),
|
196 |
),
|
197 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
React.createElement("div", {
|
199 |
className: "columns-1 sm:columns-2 lg:columns-3 gap-4 space-y-4"
|
200 |
}, videos.map((video, i) =>
|
|
|
195 |
),
|
196 |
),
|
197 |
),
|
198 |
+
|
199 |
+
React.createElement("div", {
|
200 |
+
className: "flex justify-center mb-10"
|
201 |
+
},
|
202 |
+
React.createElement("iframe", {
|
203 |
+
width: "700",
|
204 |
+
height: "400",
|
205 |
+
src: "https://www.youtube.com/embed/-oA0K_rTBKs?si=SBTvE5BCJ6A1pPgS",
|
206 |
+
title: "YouTube video player",
|
207 |
+
frameBorder: "0",
|
208 |
+
allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share",
|
209 |
+
referrerPolicy: "strict-origin-when-cross-origin",
|
210 |
+
allowFullScreen: true
|
211 |
+
})
|
212 |
+
),
|
213 |
+
|
214 |
React.createElement("div", {
|
215 |
className: "columns-1 sm:columns-2 lg:columns-3 gap-4 space-y-4"
|
216 |
}, videos.map((video, i) =>
|