Skip to content

Commit

Permalink
change bonus to 30
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyMoeglich committed Oct 11, 2024
1 parent b8c203f commit 786aa2e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions apps/ebay/src/routes/packages-[packages]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@
<div class="text-center flex flex-col gap-2">
<h1 class="title font-bold text-3xl">{@html get_title(packages)}</h1>
<ul class="text-red-600 text-xl">
<li>✓ Bonus von TAGARO: € 20 Bonus on top bei erfolgreichem Vertragsabschluss</li>
<li>✓ Bonus von TAGARO: € 30 Bonus on top bei erfolgreichem Vertragsabschluss</li>
</ul>
<p class="max-w-6xl mt-2">
Entdecke die ganze Vielfalt von Sky mit unseren Wunschpaketen zum Vorteilspreis. Bei
Buchung des Cinema Pakets, erhältst du Paramount+ dazu. Zusätzlich überweisen wir dir
einen Bonus von € 20. Der Empfang ist über Sat oder Kabel möglich. Die Empfangsart
einen Bonus von € 30. Der Empfang ist über Sat oder Kabel möglich. Die Empfangsart
Internet / Sky Stream können wir derzeit aufgrund einer Systemumstellung bei uns als
Händler nicht vermitteln. Wir bieten ebenso sämtliche Zubuchoptionen zu deinem Vertrag wie
Multiscreen und DAZN an. Deine PAYBACK Nummer für 500 Basis-Punkte tragen wir gerne ein.
Expand Down
4 changes: 2 additions & 2 deletions packages/asset_library/offer_description.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const offer_descriptions: offer_descriptions_type = [
id: 'opt1',
aktivierung: 0,
conditions: [],
bonus: 20,
bonus: 30,
short_text: text_descriptions,
long_text: text_descriptions,
actions: [],
Expand Down Expand Up @@ -173,7 +173,7 @@ export const empty_offer: offer_description_type = {
id: '',
aktivierung: 0,
conditions: [],
bonus: 20,
bonus: 30,
short_text: '',
long_text: '',
actions: [],
Expand Down
2 changes: 1 addition & 1 deletion packages/asset_library/prices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const well_defined_combinations = [
export const aktivierung = 0 as number;
export const aktivierung_string = to_price_string(aktivierung);

export const bonus = 20 as number;
export const bonus = 30 as number;
export const bonus_string = (escaped: boolean = true) => to_price_string(bonus, escaped);

const price_table = map_entries(indexed_priceable_assets, ([key, value]) => [key, value.price]);
Expand Down

0 comments on commit 786aa2e

Please sign in to comment.