> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mention-me.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Promote on Homepage

> Drive customer acquisition by promoting your referral programme on your homepage using headers, tiles, corner peels, and overlays.

Promoting referrals on your homepage can account for up to **60% of new sign-ups**. Most homepage promotion methods require a landing page where customers can register and share the referral offer.

## 1. Site Header (Link to Landing Page)

A dedicated banner below the site header is one of the easiest options. Add a link or CTA to the landing page, and enable it on other pages across your website.

<img src="https://mintcdn.com/mentionme/C1vG22y8SkxcNvww/images/knowledge/referral/promoting/25617014596253.jpg?fit=max&auto=format&n=C1vG22y8SkxcNvww&q=85&s=f2880fc2ff804492286f4cab028c134e" alt="Site header referral banner example" width="1597" height="946" data-path="images/knowledge/referral/promoting/25617014596253.jpg" />

<img src="https://mintcdn.com/mentionme/C1vG22y8SkxcNvww/images/knowledge/referral/promoting/25616987927709.jpg?fit=max&auto=format&n=C1vG22y8SkxcNvww&q=85&s=68edeeea4bbf49a59875d2b7301a7557" alt="Referral programme header promotion" width="1077" height="662" data-path="images/knowledge/referral/promoting/25616987927709.jpg" />

If you're running A/B tests, avoid specifying the reward in the copy. Use a generic message like "Earn rewards by sharing with friends".

To track performance, append a situation parameter:

```text theme={null}
www.example.com/refer-a-friend?situation=homepage_header_promo
```

For multiple campaigns with different segments or locales, add those parameters too:

```text theme={null}
www.example.com/refer-a-friend?situation=homepage_banner_promo&segment=VIP&locale=en_US
```

## 2. Homepage Tile (Link to Landing Page)

No new tag required — just append a situation parameter to the landing page link:

```text theme={null}
www.example.com/refer-a-friend?situation=homepage_banner_promo
```

<Frame caption="Homepage tile promoting referral programme">
  <img src="https://mintcdn.com/mentionme/C1vG22y8SkxcNvww/images/knowledge/referral/promoting/25617014597405.jpg?fit=max&auto=format&n=C1vG22y8SkxcNvww&q=85&s=848ec5f514e617b3bd3b3104399ef86c" alt="Homepage tile promoting referral programme" width="1600" height="941" data-path="images/knowledge/referral/promoting/25617014597405.jpg" />
</Frame>

## 3. Homepage Corner Peel

The corner peel is easy to implement and shows a referral overlay when clicked. It requires only a tag.

<Frame caption="Corner peel referral overlay example">
  <img src="https://mintcdn.com/mentionme/C1vG22y8SkxcNvww/images/knowledge/referral/promoting/25617014598301.jpg?fit=max&auto=format&n=C1vG22y8SkxcNvww&q=85&s=5a8428097c66a1a52ad3dff40ee11da7" alt="Corner peel referral overlay example" width="1071" height="653" data-path="images/knowledge/referral/promoting/25617014598301.jpg" />
</Frame>

<Note>
  This option isn't ideal if you have multiple campaigns triggered by segments.
</Note>

* Replace `PARTNERCODE` with your Mention Me partner code (found in your dashboard)
* Mention Me will create an injection point of type "Corner Peel Overlay" and situation `homepage_banner_link`

Add this script to your homepage:

```html theme={null}
<script type="text/javascript" src="https://tag-demo.mention-me.com/api/v2/referreroffer/PARTNERCODE?situation=homepage_banner_cornerpeel&implementation=overlay&locale=<INSERT_LOCALE>"></script>
```

## 4. Link to Overlay

Shows the referral overlay when clicked, letting customers register without leaving the homepage. You can customise the link to look like a button, incorporate it with a banner, image, or any other element.

<Frame caption="Link to overlay referral promotion example">
  <img src="https://mintcdn.com/mentionme/C1vG22y8SkxcNvww/images/knowledge/referral/promoting/25616987930269.jpg?fit=max&auto=format&n=C1vG22y8SkxcNvww&q=85&s=c4cf0aa1dc30057b5517d66a6abf635c" alt="Link to overlay referral promotion example" width="1244" height="505" data-path="images/knowledge/referral/promoting/25616987930269.jpg" />
</Frame>

To implement:

1. Create an empty div with the ID `mmWrapper`:

```html theme={null}
<!-- Begin Mention Me referrer placeholder div -->
<div id="mmWrapper"></div>
<!-- End Mention Me referrer placeholder div -->
```

2. Add the tag:

```html theme={null}
<!-- Begin Mention Me referrer integration -->
<script type="text/javascript" src="https://tag.mention-me.com/api/v2/referreroffer/PARTNERCODE?situation=homepage_banner_link&implementation=link"></script>
<!-- End Mention Me referrer integration -->
```

We'll customise the link style to match your site. The CTA will display the overlay when clicked.
