@@ -7,14 +7,14 @@ import FeaturedVideo from "../video/FeaturedVideo";
77const releaseVideoPlaceholderImage = await getImage ({
88 src: ReleaseVideoPlaceholder ,
99 format: ' webp' ,
10- width: 624 ,
10+ width: 448 ,
1111 quality: 80 ,
1212});
1313
1414const featuredVideoPlaceholderImage = await getImage ({
1515 src: PromoVideoPlaceholder ,
1616 format: ' webp' ,
17- width: 624 ,
17+ width: 448 ,
1818 quality: 80 ,
1919});
2020
@@ -39,29 +39,36 @@ const promoVideo = {
3939---
4040
4141<section class =" bg-slate-100" >
42- <div
43- class =" grid md:grid-cols-2 max-w-screen-2xl px-6 sm:px-12 mx-auto py-8 gap-8"
44- >
45- <FeaturedVideo
46- client:load
47- title ={ releaseVideo .title }
48- label ={ releaseVideo .label }
49- placeholderImage ={ releaseVideo .placeholderImage }
50- imageAltText ={ releaseVideo .imageAltText }
51- videoURL ={ releaseVideo .videoURL }
52- matomoEventName ={ releaseVideo .title }
53- />
54- <FeaturedVideo
55- client:load
56- title ={ promoVideo .title }
57- label ={ promoVideo .label }
58- placeholderImage ={ promoVideo .placeholderImage }
59- imageAltText ={ promoVideo .imageAltText }
60- videoURL ={ promoVideo .videoURL }
61- CTA ={ promoVideo .CTA }
62- ctaText ={ promoVideo .ctaText }
63- ctaURL ={ promoVideo .ctaURL }
64- matomoEventName ={ promoVideo .title }
65- />
42+ <div class =" mx-auto px-6 xs:px-12 md:px-8 py-6 md:py-8 lg:py-12 max-w-screen-lg" >
43+ <div class =" flex flex-col md:flex-row gap-12 md:gap-16" >
44+ <!-- First Video Column -->
45+ <div class =" w-full md:w-1/2" >
46+ <FeaturedVideo
47+ client:load
48+ title ={ releaseVideo .title }
49+ label ={ releaseVideo .label }
50+ placeholderImage ={ releaseVideo .placeholderImage }
51+ imageAltText ={ releaseVideo .imageAltText }
52+ videoURL ={ releaseVideo .videoURL }
53+ matomoEventName ={ releaseVideo .title }
54+ />
55+ </div >
56+
57+ <!-- Second Video Column -->
58+ <div class =" w-full md:w-1/2" >
59+ <FeaturedVideo
60+ client:load
61+ title ={ promoVideo .title }
62+ label ={ promoVideo .label }
63+ placeholderImage ={ promoVideo .placeholderImage }
64+ imageAltText ={ promoVideo .imageAltText }
65+ videoURL ={ promoVideo .videoURL }
66+ CTA ={ promoVideo .CTA }
67+ ctaText ={ promoVideo .ctaText }
68+ ctaURL ={ promoVideo .ctaURL }
69+ matomoEventName ={ promoVideo .title }
70+ />
71+ </div >
72+ </div >
6673 </div >
6774</section >
0 commit comments