Skip to content

Commit

Permalink
add new 50 offer, revertable
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyMoeglich committed Oct 29, 2024
1 parent 44c61b8 commit 3b4e50c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 18 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/routes/main_showcase.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
points={[
`Nur im Web: € 0 statt € 29 einmalige Gebühr*`,
// `On top ${bonus_string()} Bonus von uns und versandkostenfreie Lieferung*`,
`On top ${bonus_string()} Bonus von uns und versandkostenfreie Lieferung*`,
`€ 50 Überweisung nach ca. 8 Wochen auf dein Konto (Aktion bis zum 10.11.2024)*`,
`Entertainment + 3 Pakete jetzt nur ${get_price_string(
['entertainment', 'cinema', 'bundesliga', 'sport'],
'jahr'
Expand Down
6 changes: 3 additions & 3 deletions apps/web/src/routes/showcase_template.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
] satisfies priceable_asset_id[];
</script>

<div class="alignment showcase_size" >
<div class="alignment showcase_size">
<div class="side_alignment" style:padding-top={`${top_margin}px`}>
{#if !hide_left}
<button class="left_side" on:click={async () => load_form('Showcase_images')}>
Expand Down Expand Up @@ -80,8 +80,8 @@
{/if}
<h2 class="gray">
<slot name="subtitle1">
Bei Vermittlung über TAGARO zusätzlich mit {@html bonus_string(true)} Bonus
<!-- Frühlingsaktion: TAGARO schenkt dir den Betrag eines Monats von deinem Wunschabo -->
Bei Abschluss über TAGARO.DE zusätzlich eine € 50 Überweisung nach 8 Wochen* (Aktion
bis zum 10.11.2024)
</slot>
</h2>
<h3 class="no_gradient">
Expand Down
4 changes: 2 additions & 2 deletions packages/asset_library/prices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const well_defined_combinations = [
export const aktivierung = 0 as number;
export const aktivierung_string = to_price_string(aktivierung);

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

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

Expand Down
2 changes: 1 addition & 1 deletion packages/asset_library/title.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function get_title(
escape = true
): string {
const sp = escape ? nspace : ' ';
const praemie = short ? '' : ` +${sp}${bonus_string(escape)}${sp}Prämie`;
const praemie = short ? '' : ` +${sp}${bonus_string(escape)}${sp}Überweisung`;
// const praemie = short ? '' : ` +${sp}${get_price_string(ids, "jahr")}${sp}Gutschrift (1${sp}Abobetrag${sp}geschenkt)`;
if (ids.filter((id) => package_ids.includes(id as package_id)).length === 4) {
if (ids.includes('entertainmentplus')) {
Expand Down
2 changes: 1 addition & 1 deletion packages/components/layout/wrapping_elements.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
<li>✓ € 0 statt € 29 einmalige Gebühr</li>
{/if}
{#if bonus !== 0}
<li>✓ {@html bonus_string()} Bonus on top</li>
<li>✓ € 50 Überweisung nach ca. 8 Wochen</li>
{/if}
<!-- <li>✓ 1 Monat deiner Abogebühren geschenkt</li> -->
<li>✓ 500 PAYBACK Basis Punkte</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,19 +441,13 @@
</p>
</div>
<div>
<h3 class={title_classes}>€&nbsp;{bonus} Prämie von uns:</h3>
<h3 class={title_classes}>€ 50 Überweisung bei Abschluss über TAGARO.DE:</h3>
<p>
Als Dankeschön erhältst du eine Prämie von €&nbsp;{bonus} auf dein Konto überwiesen. Du erhältst
den Betrag nach ca. 8 Wochen nach dem Abobeginn gutgeschrieben.
Als Dankeschön erhältst du von uns bei erfolgreichem Vertragsabschluss eine Gutschrift von €50
auf dein Konto. Der Betrag wird etwa 8 Wochen nach Abschluss überwiesen. Die Aktion gilt bis
zum 10.11.2024.
</p>
</div>
<!-- <div>
<h3 class={title_classes}>1 Monat deiner Abogebühren geschenkt:</h3>
<p>
Als Dankeschön erhältst du eine Gutschrift über den Abobetrag eines Monats deines gewählten
Wunschabos auf dein Konto überwiesen. Die Auszahlung erfolgt von uns nach ca. 8 Wochen.
</p>
</div> -->
<br />
</div>

Expand Down

0 comments on commit 3b4e50c

Please sign in to comment.