diff --git a/.replit b/.replit index f270cff..dd7d269 100644 --- a/.replit +++ b/.replit @@ -15,6 +15,10 @@ run = ["npm", "run", "start"] localPort = 5000 externalPort = 80 +[[ports]] +localPort = 33967 +externalPort = 3002 + [[ports]] localPort = 34033 externalPort = 3001 @@ -23,10 +27,6 @@ externalPort = 3001 localPort = 35637 externalPort = 3000 -[[ports]] -localPort = 35815 -externalPort = 3002 - [env] PORT = "5000" diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx index d9cbd39..ffd6018 100644 --- a/client/src/pages/VideoPage.tsx +++ b/client/src/pages/VideoPage.tsx @@ -504,6 +504,18 @@ export default function VideoPage() { {/* Fixed Header Ad */} + {/* Fullwidth Ad - Mid-content */} +
+
+ +
+
+
{/* Background logo decorations */}
Empfohlene Videos
- {recommendedVideos.slice(0, 15).map((video, index) => ( -
- {/* Insert ad after 5th video */} - {index === 5 && ( -
- -
- )} - - {/* Insert ad after 10th video */} - {index === 10 && ( -
- -
- )} - -
{ - const shortId = video.id.replace(/-/g, '').substring(0, 8); - setLocation(`/video/${shortId}`); - }} - className="flex gap-3 p-2 bg-bunny-gray/30 hover:bg-bunny-gray/50 rounded-lg cursor-pointer transition-colors" - > + {recommendedVideos.slice(0, 10).map((video) => ( +
{ + const shortId = video.id.replace(/-/g, '').substring(0, 8); + setLocation(`/video/${shortId}`); + }} + className="flex gap-3 p-2 bg-bunny-gray/30 hover:bg-bunny-gray/50 rounded-lg cursor-pointer transition-colors" + >
+ + {/* Fullwidth Ad - Before Footer */} +
+
+ +
+
{/* Footer - same as home page */}