hypnagaga/src/components/AdSlot/LeaderboardAd.mdx
2025-02-07 12:48:42 +00:00

31 lines
685 B
Text

import { Meta, Canvas } from '@storybook/blocks';
import * as LeaderboardAdStories from './LeaderboardAd.stories.svelte';
<Meta of={LeaderboardAdStories} />
# LeaderboardAd
Add a leaderboard ad to your page.
> **IMPORTANT!** Make sure ads are only used on dotcom pages, never on embeds.
```svelte
<!-- +page.svelte -->
<script>
import {
AdScripts,
LeaderboardAd,
SiteHeader,
} from '@reuters-graphics/graphics-components';
</script>
<!-- Include AdScripts only ONCE per page for any type of ad -->
<AdScripts />
<!-- ALWAYS put the leaderboard ad directly above the SiteHeader -->
<LeaderboardAd />
<SiteHeader />
```
<Canvas of={LeaderboardAdStories.Demo} />