Update sidebar ad sizes to match new display dimensions

Modify AdSense ad components in VideoPage.tsx to use 300x250 dimensions and ad slot 8989519684.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 45a1dcfc-f8a2-475a-a6b9-96fbb841dc27
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/45a1dcfc-f8a2-475a-a6b9-96fbb841dc27/mrSIMJA
This commit is contained in:
sebastjanartic 2025-09-28 13:58:15 +00:00
parent f67af040c0
commit c7058ab063
2 changed files with 12 additions and 8 deletions

View File

@ -23,6 +23,10 @@ externalPort = 3001
localPort = 35637
externalPort = 3000
[[ports]]
localPort = 35815
externalPort = 3002
[[ports]]
localPort = 41313
externalPort = 3003

View File

@ -793,12 +793,12 @@ export default function VideoPage() {
{/* Recommended videos sidebar */}
<div className="w-full lg:w-96">
{/* Sidebar Ad */}
{/* Sidebar Ad - 300x250 Before Recommended Videos */}
<div className="mb-6">
<AdSenseAd
adSlot="5629279662"
width={728}
height={90}
adSlot="8989519684"
width={300}
height={250}
className="w-full"
/>
</div>
@ -857,12 +857,12 @@ export default function VideoPage() {
))}
</div>
{/* Bottom Sidebar Ad */}
{/* Bottom Sidebar Ad - 300x250 After Recommended Videos */}
<div className="mt-6">
<AdSenseAd
adSlot="1372934919"
width={728}
height={90}
adSlot="8989519684"
width={300}
height={250}
className="w-full"
/>
</div>