22 lines
864 B
TypeScript
22 lines
864 B
TypeScript
import React from "react";
|
|
import AppImage from "@/components/ui/AppImage";
|
|
|
|
// DO NOT OVERRIDE — Leaderboard ad placeholder layout
|
|
export default function LeaderboardAd() {
|
|
return (
|
|
<div className="bg-ice-blue border-b border-border py-3">
|
|
<div className="max-w-container mx-auto px-4 flex justify-center">
|
|
{/* Leaderboard ad unit — 728x90 — stub links to advertise page */}
|
|
<a href="/advertise" aria-label="Advertisement — click to learn about advertising on BroadcastBeat" className="block">
|
|
<AppImage
|
|
src="https://img.rocket.new/generatedImages/rocket_gen_img_1bebfd3c7-1765090260606.png"
|
|
alt="BroadcastBeat sponsor advertisement banner 728x90"
|
|
width={728}
|
|
height={90}
|
|
className="max-w-full h-auto" />
|
|
|
|
</a>
|
|
</div>
|
|
</div>);
|
|
|
|
} |