Skip to content

Commit 6a57608

Browse files
meili-bors[bot]Strift
andauthored
Merge #481
481: Update copy and UTMs r=mdubus a=Strift # Pull Request This PR follows the PR #480 ## What does this PR do? - Add UTM params to links in the readme (source: github, medium: minidashboard) - Add UTM params to links in the app (source: integration, medium: minidashboard) ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Strift <[email protected]>
2 parents 2b37a57 + fc55cf3 commit 6a57608

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

README.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,23 @@
1414

1515
*Our team is small, and our availability will be reduced in the upcoming times. As such, response times might be slower, and we will not be accepting enhancements for this repository moving forward.*
1616

17-
*If you're looking for reliable alternatives, consider using [Cloud Service](https://www.meilisearch.com/pricing?utm_campaign=oss&utm_source=integration&utm_medium=mini-dashboard). For instance, it offers a convenient solution for managing your index settings.*
17+
*If you're looking for reliable alternatives, consider using [Meilisearch Cloud](https://meilisearch.com/cloud?utm_campaign=oss&utm_source=github&utm_medium=minidashboard). For instance, it offers a convenient solution for managing your index settings.*
1818

19-
*Seeking immediate support? Please join us on [our Discord channel](https://discord.meilisearch.com).*
19+
*Seeking immediate support? Please join us on [our Discord server](https://discord.meilisearch.com).*
2020

2121
---
2222

2323
<h4 align="center">
24-
<a href="https://github.com/meilisearch/meilisearch">Meilisearch</a> |
25-
<a href="https://docs.meilisearch.com">Documentation</a> |
26-
<a href="https://discord.meilisearch.com">Discord</a> |
27-
<a href="https://www.meilisearch.com">Website</a> |
28-
<a href="https://docs.meilisearch.com/faq">FAQ</a>
24+
<a href="https://www.meilisearch.com/?utm_campaign=oss&utm_source=github&utm_medium=minidashboard">Website</a> |
25+
<a href="https://www.meilisearch.com/cloud?utm_campaign=oss&utm_source=github&utm_medium=minidashboard">Meilisearch Cloud</a> |
26+
<a href="https://blog.meilisearch.com/?utm_campaign=oss&utm_source=github&utm_medium=minidashboard">Blog</a> |
27+
<a href="https://meilisearch.com/docs?utm_campaign=oss&utm_source=github&utm_medium=minidashboard">Documentation</a> |
28+
<a href="https://discord.meilisearch.com/?utm_campaign=oss&utm_source=github&utm_medium=minidashboard">Discord</a>
2929
</h4>
3030

31-
<p align="center">
32-
<a href="https://github.com/prettier/prettier"><img src="https://img.shields.io/badge/styled_with-prettier-ff69b4.svg" alt="Prettier"></a>
33-
<a href="https://github.com/meilisearch/mini-dashboard/blob/main/LICENCE"><img src="https://img.shields.io/badge/license-MIT-informational" alt="License"></a>
34-
<a href="https://ms-bors.herokuapp.com/repositories/55"><img src="https://bors.tech/images/badge_small.svg" alt="Bors enabled"></a>
35-
</p>
36-
<br/>
31+
> Meilisearch is an open-source search engine that offers fast, relevant search out of the box.
32+
33+
👉 [Meilisearch repository](https://github.com/meilisearch/meilisearch)
3734

3835
<p align="center" style="font-weight:bold;">Meilisearch's mini-dashboard. A web-app served by the engine with a minimal search experience on your data.</p>
3936

cypress/e2e/test-interface.cy.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ describe(`Test interface`, () => {
3939
.next()
4040
.should('have.attr', 'href', 'https://discord.meilisearch.com')
4141
.next()
42-
.should('have.attr', 'href', 'https://docs.meilisearch.com/')
42+
.should(
43+
'have.attr',
44+
'href',
45+
'https://docs.meilisearch.com/?utm_campaign=oss&utm_source=integration&utm_medium=minidashboard'
46+
)
4347
cy.get('button[aria-label="close"]').click()
4448
})
4549
})

src/components/Header/HelpCenter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const HelpCenter = () => {
117117
logo={<MeilisearchLogo style={{ width: 62 }} />}
118118
title="Documentation"
119119
description="Learn how to tune your Meilisearch"
120-
href="https://docs.meilisearch.com/"
120+
href="https://docs.meilisearch.com/?utm_campaign=oss&utm_source=integration&utm_medium=minidashboard"
121121
/>
122122
</CardsContainer>
123123
</Modal>

0 commit comments

Comments
 (0)