From 263f2b15cc735eaa2f2d8da1aface442de7c8cbf Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Mon, 1 Aug 2022 13:39:34 -0500 Subject: [PATCH] Add Express VPN to privacy related listings --- components/ad-inline.vue | 7 +++++++ src/components/default-listing.astro | 3 +++ 2 files changed, 10 insertions(+) diff --git a/components/ad-inline.vue b/components/ad-inline.vue index e1fa213..f1867be 100644 --- a/components/ad-inline.vue +++ b/components/ad-inline.vue @@ -79,6 +79,13 @@ const ads = { imageAlt: 'Wondershare Filmora on a macOS Desktop', copy: 'Filmora X now supports ARM', corner: 'Ad' + }, + 'expressvpn-bounty': { + url: 'http://www.xvuslink.com/blog/bug-bounty-bonus-vpn-server-vulnerabilities/?a_aid=doesitarm', + imageSrc: 'https://vumbnail.com/7uE7kFcJ_Pk.jpg', + imageAlt: 'Protect Your Online Privacy Now With ExpressVPN', + copy: 'ExpressVPN\'s $100,000 bug bounty bonus for VPN server vulnerabilities', + corner: 'Ad' } } diff --git a/src/components/default-listing.astro b/src/components/default-listing.astro index c615122..013f2b4 100644 --- a/src/components/default-listing.astro +++ b/src/components/default-listing.astro @@ -45,6 +45,9 @@ const adName = (() => { // Video and Motion Tools if ( listing?.category?.slug === 'video-and-motion-tools' ) return 'wondershare-arm-1' + // VPNs, Security, and Privacy + if ( listing?.category?.slug === 'vpns-security-and-privacy' ) return 'expressvpn-bounty' + return 'default' })()