diff --git a/src/components/default-listing.astro b/src/components/default-listing.astro index bbf0cb4..c615122 100644 --- a/src/components/default-listing.astro +++ b/src/components/default-listing.astro @@ -42,6 +42,9 @@ const adName = (() => { // Productivity Apps if ( listing?.category?.slug === 'productivity-tools' ) return 'codeable-1' + // Video and Motion Tools + if ( listing?.category?.slug === 'video-and-motion-tools' ) return 'wondershare-arm-1' + return 'default' })() diff --git a/src/pages/kind/[...kindPath].astro b/src/pages/kind/[...kindPath].astro index 0ad9aa7..083e99a 100644 --- a/src/pages/kind/[...kindPath].astro +++ b/src/pages/kind/[...kindPath].astro @@ -74,6 +74,9 @@ const adName = (() => { if ( kindName === 'developer-tools' ) return 'jotform-for-developers-1' + // Video and Motion Tools + if ( kindName === 'video-and-motion-tools' ) return 'wondershare-arm-1' + return 'default' })()