Skip to content

Commit

Permalink
feat: added more testimonials for restaurant
Browse files Browse the repository at this point in the history
  • Loading branch information
mwargan committed Apr 29, 2024
1 parent 2407f5a commit 17e976b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/data/testimonials/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
"jobTitle": null,
"industry": "startup"
},
{
"name": "Benjamin",
"description": "To provide people with the insentive to scan our magic link for our Insta page, we offer a free drink for every 100th person that scans. With the magic link we can easily redirect every 100th scan to a page that tells them they've won.",
"jobTitle": "O'Learys Pub Owner",
"industry": "food_and_beverage"
},
{
"name": "Sophie",
"description": "As a café owner, using magic links on our loyalty cards has boosted customer engagement. By incentivizing scans, we offer exclusive rewards directly to smartphones, fostering loyalty and providing valuable insights for tailored experiences.",
"jobTitle": "Café Owner",
"industry": "food_and_beverage"
},
{
"name": "Geraldine",
"description": "Our magic links are setup so that people that scan the same property more than 2 times end up on a more personalised and direct contact page. It's been a great way to convert more real potential leads into buyers, and filter out those that are just curiously looking.",
Expand Down
12 changes: 12 additions & 0 deletions src/data/testimonials/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
"jobTitle": null,
"industry": "startup"
},
{
"name": "Benjamin",
"description": "Pour inciter les gens à scanner notre lien magique pour notre page Insta, nous offrons une boisson gratuite à chaque 100e personne qui scanne. Avec le lien magique, nous pouvons facilement rediriger chaque 100e scan vers une page qui leur dit qu'ils ont gagné.",
"jobTitle": "Propriétaire du Pub O'Learys",
"industry": "food_and_beverage"
},
{
"name": "Sophie",
"description": "En tant que propriétaire de café, l'utilisation de liens magiques sur nos cartes de fidélité a stimulé l'engagement client. En incitant les scans, nous offrons des récompenses exclusives directement sur les smartphones, favorisant la fidélité et fournissant des informations précieuses pour des expériences sur mesure.",
"jobTitle": "Propriétaire de café",
"industry": "food_and_beverage"
},
{
"name": "Géraldine",
"description": "Nos liens magiques sont configurés de sorte que les personnes qui consultent la même propriété plus de 2 fois aboutissent sur une page de contact plus personnalisée et directe. Cela a été un excellent moyen de convertir davantage de véritables prospects en acheteurs, et de filtrer ceux qui ne font que regarder par simple curiosité.",
Expand Down
4 changes: 3 additions & 1 deletion src/views/RestaurantView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ const assetUrl = (asset: string, extension = "png") =>
</hgroup>
<ul class="three-column-grid">
<li
v-for="testimonial in testimonialData.slice(0, 3)"
v-for="testimonial in testimonialData
.filter((item) => item.industry === 'food_and_beverage')
.slice(0, 3)"
:key="testimonial.id"
>
<hgroup>
Expand Down

0 comments on commit 17e976b

Please sign in to comment.