This commit is contained in:
2026-01-25 22:28:47 +01:00
parent 702e2710de
commit 54c3652c99
4 changed files with 48 additions and 1 deletions

View File

@@ -51,6 +51,8 @@ export const metadata: Metadata = {
},
};
import AdBanner from '@/components/ads/AdBanner'; // Import AdBanner
export default function MarketingDeGroupLayout({
children,
}: {
@@ -72,6 +74,16 @@ export default function MarketingDeGroupLayout({
/>
<MarketingDeLayout>
{children}
{/* Global Marketing Ad - Exclusions handled in AdBanner */}
<div className="container mx-auto px-4 sm:px-6 lg:px-8 max-w-7xl pb-8">
<AdBanner
dataAdSlot="2607110637"
dataAdFormat="auto"
fullWidthResponsive={true}
className="bg-slate-50 rounded-xl p-4 border border-slate-100"
/>
</div>
</MarketingDeLayout>
</Providers>
</Suspense>