File tree Expand file tree Collapse file tree 5 files changed +90
-4
lines changed Expand file tree Collapse file tree 5 files changed +90
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ bump interactive coding beyond prototyping and demos. Our website is
1010[ https://codepod.io ] ( https://codepod.io ) . More details are in our paper:
1111[ https://arxiv.org/abs/2301.02410 ] ( https://arxiv.org/abs/2301.02410 )
1212
13- Start with the [ user manual] ( /docs/manual ) .
13+ ## Get started with the following pointers
14+
15+ Here are the pointers to get you started:
16+
17+ - Read the [ user manual] ( /docs/manual ) .
18+ - Try [ the app] ( /login ) online
19+ - Watch [ tutorial videos] ( /docs/video )
1420
1521<!-- Codepod is free and open source, you can deploy your own CodePod by following hte [developer manual](/docs/developer). -->
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ This manual describes all the Operations and User Interface for the app.
2828
2929<iframe
3030 style={{
31- width: "100 %",
31+ width: "80 %",
3232 aspectRatio: 16/9,
3333 }}
34- src="https://www.youtube.com/embed/M0t2zxSrF6Q?si=1YweMxN8XHiArZlF " 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 >
34+ src="https://www.youtube.com/embed/M0t2zxSrF6Q " 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 >
3535
3636## tl;dr (Cheatsheet)
3737
Original file line number Diff line number Diff line change 1+ # Videos
2+
3+ ### Introduction and Basic Tutorial in 5 minutes
4+
5+ <iframe
6+ style={{
7+ width: "80%",
8+ aspectRatio: 16/9,
9+ }}
10+ src="https://www.youtube.com/embed/M0t2zxSrF6Q " 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 >
11+
12+ ### Detailed Tutorial on a real project in 20 minutes
13+
14+ <iframe
15+ style={{
16+ width: "80%",
17+ aspectRatio: 16/9,
18+ }}
19+ src="https://www.youtube.com/embed/06yr8FTTxtI " 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 >
Original file line number Diff line number Diff line change @@ -97,6 +97,11 @@ const config: Config = {
9797 position : "left" ,
9898 label : "Screenshots" ,
9999 } ,
100+ {
101+ to : "docs/video" ,
102+ position : "left" ,
103+ label : "Videos" ,
104+ } ,
100105 {
101106 href : "https://github.com/codepod-io/codepod" ,
102107 label : "GitHub" ,
Original file line number Diff line number Diff line change @@ -99,6 +99,20 @@ function Hero() {
9999 Read our paper < span aria-hidden = "true" > →</ span >
100100 </ a >
101101 </ div >
102+ < iframe
103+ style = { {
104+ marginTop : "4rem" ,
105+ width : "60%" ,
106+ aspectRatio : 16 / 9 ,
107+ } }
108+ src = "https://www.youtube.com/embed/M0t2zxSrF6Q"
109+ title = "YouTube video player"
110+ frameBorder = "0"
111+ allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
112+ referrerPolicy = "strict-origin-when-cross-origin"
113+ allowFullScreen
114+ > </ iframe >
115+
102116 < div
103117 style = { {
104118 marginTop : "4rem" ,
@@ -465,6 +479,47 @@ function Contact() {
465479 ) ;
466480}
467481
482+ function Videos ( ) {
483+ return (
484+ < div
485+ style = { {
486+ // margin: "auto",
487+ // width: "100%",
488+ display : "flex" ,
489+ flexDirection : "column" ,
490+ justifyContent : "center" ,
491+ alignItems : "center" ,
492+ gap : "2rem" ,
493+ } }
494+ >
495+ { /* <iframe
496+ style={{
497+ width: "40%",
498+ aspectRatio: 16 / 9,
499+ }}
500+ src="https://www.youtube.com/embed/M0t2zxSrF6Q"
501+ title="YouTube video player"
502+ frameBorder="0"
503+ allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
504+ referrerPolicy="strict-origin-when-cross-origin"
505+ allowFullScreen
506+ ></iframe> */ }
507+ < iframe
508+ style = { {
509+ width : "40%" ,
510+ aspectRatio : 16 / 9 ,
511+ } }
512+ src = "https://www.youtube.com/embed/06yr8FTTxtI"
513+ title = "YouTube video player"
514+ frameBorder = "0"
515+ allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
516+ referrerPolicy = "strict-origin-when-cross-origin"
517+ allowFullScreen
518+ > </ iframe >
519+ </ div >
520+ ) ;
521+ }
522+
468523export default function Home ( ) : JSX . Element {
469524 const { siteConfig } = useDocusaurusContext ( ) ;
470525 return (
@@ -480,9 +535,10 @@ export default function Home(): JSX.Element {
480535 >
481536 { /* <HomepageFeatures /> */ }
482537 < WhyIn3 />
538+ < Videos />
483539 < LDAExample />
484540 < FeatureList2 />
485- < Team />
541+ { /* <Team /> */ }
486542 < Contact />
487543 </ main >
488544 </ Layout >
You can’t perform that action at this time.
0 commit comments