Update header ad to support larger sizes and new ad slot

Modify the HeaderAd component in client/src/components/HeaderAd.tsx to use a 1200x90px ad size and update the data-ad-slot to 8632735961.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 401e2ec0-e00d-4f10-9d0e-60f3d479f9a5
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/401e2ec0-e00d-4f10-9d0e-60f3d479f9a5/L7kpygT
This commit is contained in:
sebastjanartic 2025-09-28 19:36:43 +00:00
parent 1cfefe096e
commit 003a41dbb0

View File

@ -22,16 +22,16 @@ export default function HeaderAd() {
return (
<div className="hidden lg:flex justify-center py-4" ref={adRef}>
{/* Desktop Only: 970x90px Header Ad */}
{/* Desktop Only: 1200x90px Header Ad */}
<ins
className="adsbygoogle"
style={{
display: 'inline-block',
width: '1360px',
width: '1200px',
height: '90px'
}}
data-ad-client="ca-pub-4465464714854276"
data-ad-slot="6554928035"
data-ad-slot="8632735961"
/>
</div>
);