{% extends 'base.html.twig' %} {% block title %}{{ 'base.title'|trans }}{% endblock %} {% block meta_description %}{{ 'base.meta_description'|trans }}{% endblock %} {% block head_extra %} {% endblock %} {% block meta_extra %} {% if site_settings.monetizationEnabled %} {% endif %} {% endblock %} {% block body %} {% from '_macros/image.html.twig' import picture %} {# SEKCJA 1 — HERO #}

{{ 'home.hero.title_1'|trans }}
{{ 'home.hero.title_2'|trans }}

{{ 'home.hero.subtitle'|trans }}

{% if site_settings.monetizationEnabled %} {{ 'home.hero.cta_download'|trans }} {% endif %} {{ 'home.hero.cta_how'|trans }}
{{ picture('images/hero/step_1.png', 'hero_phone', 'TROPO — ekran główny', 'w-full h-auto', 'eager', 500, 986) }} {{ picture('images/hero/step_2.png', 'hero_phone', 'TROPO — ekran misji', 'w-full h-auto', 'eager', 500, 986) }} {{ picture('images/hero/step_3.png', 'hero_phone', 'TROPO — ekran misji', 'w-full h-auto', 'eager', 500, 986) }}
{# SEKCJA 2 — JAK TO DZIAŁA #}

{{ 'home.how_it_works.title'|trans }}

{{ 'home.how_it_works.subtitle'|trans }}

{{ 'home.how_it_works.step1_title'|trans }}

{{ 'home.how_it_works.step1_desc'|trans }}

{{ 'home.how_it_works.step2_title'|trans }}

{{ 'home.how_it_works.step2_desc'|trans }}

{{ 'home.how_it_works.step3_title'|trans }}

{{ 'home.how_it_works.step3_desc'|trans }}

{# SEKCJA 2.5 — DLA CAŁEJ RODZINY #}

{{ 'home.family.title'|trans }}

{{ 'home.family.subtitle'|trans }}

👤

{{ 'home.family.profiles_title'|trans }}

{{ 'home.family.profiles_desc'|trans }}

👥

{{ 'home.family.together_title'|trans }}

{{ 'home.family.together_desc'|trans }}

📱

{{ 'home.family.phone_title'|trans }}

{{ 'home.family.phone_desc'|trans }}

{# SEKCJA 3 — POZNAJ DRUŻYNĘ #}

{{ 'home.team.title'|trans }}

{{ 'home.team.subtitle'|trans }}

{% set characters = [ {slug: 'scout', name: 'Scout', species: 'character.scout.species'|trans, color: 'scout', desc: 'character.scout.home_desc'|trans}, {slug: 'blitz', name: 'Blitz', species: 'character.blitz.species'|trans, color: 'blitz', desc: 'character.blitz.home_desc'|trans}, {slug: 'nova', name: 'Nova', species: 'character.nova.species'|trans, color: 'nova', desc: 'character.nova.home_desc'|trans}, {slug: 'echo', name: 'Echo', species: 'character.echo.species'|trans, color: 'echo', desc: 'character.echo.home_desc'|trans} ] %} {% for char in characters %} {% set hoverSlugs = ['scout', 'blitz', 'nova', 'echo'] %}
{% if char.slug in hoverSlugs %}
{{ picture('images/characters/' ~ char.slug ~ '_ikona.png', 'char_icon', char.name, 'w-full h-full object-cover rounded-full') }}
{{ picture('images/' ~ char.slug ~ '_logo_hover.png', 'char_icon', char.name, 'w-full h-full object-cover rounded-full') }}
{% else %} {{ picture('images/characters/' ~ char.slug ~ '_ikona.png', 'char_icon', char.name, 'w-full h-full object-cover rounded-full') }} {% endif %}

{{ char.name }}

{{ char.species }}

{{ char.desc }}

{{ 'home.team.meet_me'|trans }}

{% endfor %}
{# SEKCJA 3.5 — ZBIERAJ OZNAKI #}

{{ 'home.badges.title'|trans }}

{{ 'home.badges.subtitle'|trans({'%count%': badgeCount}) }}

{{ badgeCount }}

{{ 'home.badges.count_label'|trans }}

{% set sampleBadges = [ {name: 'Tropiciel', char: 'scout', loc: 'Teren'}, {name: 'Domowy Olimpijczyk', char: 'blitz', loc: 'Dom'}, {name: 'Budowniczy', char: 'nova', loc: 'Dom'}, {name: 'Poeta Przyrody', char: 'echo', loc: 'Teren'} ] %} {% for b in sampleBadges %}
{{ picture('images/characters/' ~ b.char ~ '_ikona.png', 'char_icon', b.name, 'w-full h-full object-cover rounded-full') }}

{{ b.name }}

{{ b.loc }}
{% endfor %}
{{ 'home.badges.see_all'|trans }}
{# SEKCJA 4 — MANIFEST #}
{{ 'home.manifest.quote'|trans }}

{{ 'home.manifest.screen_time'|trans }}

{{ 'home.manifest.no_ads'|trans }}

{{ 'home.manifest.together'|trans }}

{{ 'home.manifest.read_more'|trans }}
{% if site_settings.monetizationEnabled %} {# SEKCJA 5 — CENNIK #}

{{ 'pricing.heading'|trans }}

{% include '_partials/pricing_cards.html.twig' with {variant: 'compact'} %}

{{ 'pricing.compare'|trans }}

{% endif %} {# SEKCJA 6 — SOCIAL PROOF #} {#

{{ 'home.social_proof.title'|trans }}

{% if testimonials|length > 0 %}
{% for t in testimonials %}
{% for s in 1..t.rating %}{% endfor %} {% for s in 1..(5 - t.rating) %}{% endfor %}

„{{ t.content }}"

{{ t.authorName }}

{% endfor %}
{% endif %}

{{ 'home.social_proof.missions_count'|trans }}

{{ 'home.social_proof.missions_label'|trans }}

{{ 'home.social_proof.minutes_count'|trans }}

{{ 'home.social_proof.minutes_label'|trans }}

#} {# SEKCJA 7 — CTA KOŃCOWY #}

{{ 'home.cta.title'|trans }}

{% if site_settings.monetizationEnabled %} {% endif %}

{% if site_settings.monetizationEnabled %}{{ 'home.cta.email_prompt_monetized'|trans }}{% else %}{{ 'home.cta.email_prompt'|trans }}{% endif %}

{% endblock %}