diff --git a/src/components/PageSponsor.tsx b/src/components/PageSponsor.tsx index cdc21b5ec..392cf0c02 100644 --- a/src/components/PageSponsor.tsx +++ b/src/components/PageSponsor.tsx @@ -59,7 +59,7 @@ export function PageSponsor(props: PageSponsorProps) { currentPath.startsWith('/guides') || currentPath.startsWith('/videos') || currentPath.startsWith('/account') || - currentPath.startsWith('/team') + currentPath.startsWith('/team/') ) { return; } @@ -127,6 +127,8 @@ export function PageSponsor(props: PageSponsorProps) { const { url, title, imageUrl, description, company, gaLabel } = sponsor; + const isRoadmapAd = title.toLowerCase() === 'advertise with us!'; + return ( {title} {description} - Partner Content - - Partner Content - + {!isRoadmapAd && ( + <> + + Partner Content + + + Partner Content + + + )} );