File tree Expand file tree Collapse file tree 6 files changed +75
-45
lines changed
Expand file tree Collapse file tree 6 files changed +75
-45
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ import AsyncIframe from ' @components/AsyncIframe.astro' ;
3+ import { LinkButton } from ' @astrojs/starlight/components' ;
4+ import StarlightPage from ' @astrojs/starlight/components/StarlightPage.astro' ;
5+
6+ const { t } = Astro .locals ;
7+ ---
8+
9+ <StarlightPage frontmatter ={ { title: t ` about.title ` , description: t ` about.description ` }} >
10+ <h2 >{ t ` about.video ` } </h2 >
11+
12+ <br />
13+
14+ <a href =" /video/propromo.mp4" download >
15+ <video width =" 1920" height =" 1080" autoplay loop muted controls poster =" /img/thumbnail.png" style =" object-fit: cover;" >
16+ <source src =" /video/propromo.mp4" type =" video/mp4" ></source >
17+ Your browser does not support the video tag.
18+ </video >
19+ </a >
20+
21+ <div style =" display: flex; justify-content: space-between;" >
22+ <a href =" https://propromo.netlify.app/7" target =" _blank" >{ t ` about.learn_more ` } </a >
23+ <a href =" /video/propromo.mp4" download >{ t ` about.download_video ` } </a >
24+ </div >
25+
26+ <hr />
27+
28+ <h3 >{ t ` about.presentation ` } </h3 >
29+
30+ <AsyncIframe >
31+ <iframe
32+ src =" https://propromo.netlify.app"
33+ style =" position: absolute; top: 0; left: 0; width: 100%; height: 100%;"
34+ frameborder =" 0"
35+ allow =" accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
36+ allowfullscreen >
37+ </iframe >
38+ </AsyncIframe >
39+
40+ <LinkButton
41+ href =" https://propromo.netlify.app"
42+ target =" _blank"
43+ variant =" secondary"
44+ icon =" external"
45+ iconPlacement =" start"
46+ >
47+ { t ` about.learn_more ` }
48+ </LinkButton >
49+ </StarlightPage >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11{
2+ "about" : {
3+ "title" : " Was ist Propromo?" ,
4+ "description" : " \" Project Progress Monitoring.\" Teilen Sie Ihren Projektfortschritt mit Kunden. Ihr Kunde möchte eingebunden werden. Propromo macht es möglich." ,
5+ "learn_more" : " Mehr erfahren." ,
6+ "download_video" : " Video herunterladen." ,
7+ "video" : " Video" ,
8+ "presentation" : " Präsentation"
9+ }
210}
Original file line number Diff line number Diff line change 11{
2+ "about" : {
3+ "title" : " What is Propromo?" ,
4+ "description" : " \" Project Progress Monitoring.\" Share your project progress with clients. Your client wants to be involved. Propromo makes it possible." ,
5+ "learn_more" : " Learn more." ,
6+ "download_video" : " Download video." ,
7+ "video" : " Video" ,
8+ "presentation" : " Presentation"
9+ }
210}
Original file line number Diff line number Diff line change 1+ ---
2+ import About from ' @components/pages/About.astro' ;
3+ ---
4+
5+ <About />
Original file line number Diff line number Diff line change 1+ ---
2+ import About from ' @components/pages/About.astro' ;
3+ ---
4+
5+ <About />
You can’t perform that action at this time.
0 commit comments