|
1 | 1 | --- |
2 | 2 | import ReleaseVideoPlaceholder from "../../assets/img/audacity-placeholder.webp"; |
3 | | -import PromoProductVideoPlaceholder from "../../assets/img/waves-denoiz-plugin.webp"; |
| 3 | +import MbcpolyspectralPlaceholder from "../../assets/img/mbc_polyspectral-placeholder.webp"; |
4 | 4 | import FeaturedVideo from "../video/FeaturedVideo"; |
5 | | ---- |
6 | 5 |
|
7 | | - <section class="bg-gray-900"> |
8 | | - <div class="grid md:grid-cols-2 max-w-screen-2xl px-6 sm:px-12 mx-auto py-8 gap-8 "> |
9 | | - <FeaturedVideo client:load title="Our latest release" label="Master channel, new realtime effects & more!" placeholderImage={ReleaseVideoPlaceholder} videoURL="https://www.youtube-nocookie.com/embed/f5TXPUOFH6A?autoplay=1"/> |
10 | | - <FeaturedVideo client:load title="Waves Denoiz Plugin" label="A new generation of noise removal that outpeforms traditional plugins." placeholderImage={PromoProductVideoPlaceholder} videoURL="https://www.youtube-nocookie.com/embed/f5TXPUOFH6A?autoplay=1" CTA ctaText="Get 50% off"/> |
11 | | - </div> |
12 | | - </section> |
13 | | - |
| 6 | +const releaseVideo = { |
| 7 | + title:"Our latest release", |
| 8 | + label:"Master channel, new realtime effects & more!", |
| 9 | + placeholderImage: ReleaseVideoPlaceholder, |
| 10 | + videoURL:"https://www.youtube-nocookie.com/embed/f5TXPUOFH6A?autoplay=1" |
| 11 | +} |
14 | 12 |
|
| 13 | +const promoVideo = { |
| 14 | + title:"Multiband Compressor", |
| 15 | + label:"Low-latency, transparent multiband compressor for real-time tracking and live mixing.", |
| 16 | + placeholderImage: MbcpolyspectralPlaceholder, |
| 17 | + videoURL:"https://www.youtube-nocookie.com/embed/Lb7jx4wdXXE?autoplay=1", |
| 18 | + CTA: true, |
| 19 | + ctaText: "Get 80% off", |
| 20 | + ctaURL:"https://www.musehub.com/plugin/polyspectral-mbc?utm_source=au-web&utm_medium=mh-cta&utm_campaign=polyspectral" |
| 21 | +} |
| 22 | +--- |
15 | 23 |
|
| 24 | +<section class="bg-gray-900"> |
| 25 | + <div |
| 26 | + class="grid md:grid-cols-2 max-w-screen-2xl px-6 sm:px-12 mx-auto py-8 gap-8" |
| 27 | + > |
| 28 | + <FeaturedVideo |
| 29 | + client:load |
| 30 | + title={releaseVideo.title} |
| 31 | + label={releaseVideo.label} |
| 32 | + placeholderImage={releaseVideo.placeholderImage} |
| 33 | + videoURL={releaseVideo.videoURL} |
| 34 | + /> |
| 35 | + <FeaturedVideo |
| 36 | + client:load |
| 37 | + title={promoVideo.title} |
| 38 | + label={promoVideo.label} |
| 39 | + placeholderImage={promoVideo.placeholderImage} |
| 40 | + videoURL={promoVideo.videoURL} |
| 41 | + CTA={promoVideo.CTA} |
| 42 | + ctaText={promoVideo.ctaText} |
| 43 | + ctaURL={promoVideo.ctaURL} |
| 44 | + /> |
| 45 | + </div> |
| 46 | +</section> |
0 commit comments