Center advertisements on the page for better visibility

Center adsense ad components horizontally using flexbox and 'mx-auto' utility classes within AdSenseAd.tsx.

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/ZmOc3Lp
This commit is contained in:
sebastjanartic 2025-09-27 06:38:15 +00:00
parent 07e01ee29d
commit 7aee6eaac8
2 changed files with 7 additions and 3 deletions

View File

@ -23,6 +23,10 @@ externalPort = 3001
localPort = 35637
externalPort = 3000
[[ports]]
localPort = 39711
externalPort = 3002
[env]
PORT = "5000"

View File

@ -68,7 +68,7 @@ export default function AdSenseAd({
// Responsive ads with different sizes for desktop/mobile
return (
<div
className={`adsense-wrapper w-full ${className}`}
className={`adsense-wrapper w-full flex justify-center ${className}`}
ref={adRef}
style={{ width: '100%', minWidth: '320px' }}
>
@ -85,7 +85,7 @@ export default function AdSenseAd({
/>
{/* Mobile ad */}
<ins
className="adsbygoogle block md:hidden"
className="adsbygoogle block md:hidden mx-auto"
style={{
display: 'inline-block',
width: mobileWidth ? `${mobileWidth}px` : '300px',
@ -114,7 +114,7 @@ export default function AdSenseAd({
return (
<div
className={`adsense-wrapper w-full ${className}`}
className={`adsense-wrapper w-full flex justify-center ${className}`}
ref={adRef}
style={{ width: '100%', minWidth: '320px' }}
>