{# app/templates/platform/homepage-wizamart.html #} {# Wizamart Marketing Homepage - Letzshop OMS Platform #} {% extends "platform/base.html" %} {% from 'shared/macros/inputs.html' import toggle_switch %} {% block title %}Wizamart - Order Management for Letzshop Sellers{% endblock %} {% block meta_description %}Lightweight OMS for Letzshop vendors. Manage orders, inventory, and invoicing. Start your 30-day free trial today.{% endblock %} {% block content %}
{# ========================================================================= HERO SECTION ========================================================================= #}
{# Badge #}
{{ _("platform.hero.badge", trial_days=trial_days) }}
{# Headline #}

{{ _("platform.hero.title") }}

{# Subheadline #}

{{ _("platform.hero.subtitle") }}

{# CTA Buttons #}
{# Background Decoration #}
{# ========================================================================= PRICING SECTION ========================================================================= #}
{# Section Header #}

{{ _("platform.pricing.title") }}

{{ _("platform.pricing.subtitle", trial_days=trial_days) }}

{# Billing Toggle #}
{{ toggle_switch( model='annual', left_label=_("platform.pricing.monthly"), right_label=_("platform.pricing.annual"), right_badge=_("platform.pricing.save_months") ) }}
{# Pricing Cards Grid #}
{% for tier in tiers %} {% endfor %}
{# ========================================================================= ADD-ONS SECTION ========================================================================= #}
{# Section Header #}

{{ _("platform.addons.title") }}

{{ _("platform.addons.subtitle") }}

{# Add-ons Grid #}
{% for addon in addons %}
{# Icon #}
{% if addon.icon == 'globe' %} {% elif addon.icon == 'shield-check' %} {% elif addon.icon == 'mail' %} {% endif %}
{# Name & Description #}

{{ addon.name }}

{{ addon.description }}

{# Price #}
{{ addon.price }}€ /{{ addon.billing_period }}
{# Options for email packages #} {% if addon.options %}
{% for opt in addon.options %}
{{ opt.quantity }} addresses: {{ opt.price }}€/month
{% endfor %}
{% endif %}
{% endfor %}
{# ========================================================================= LETZSHOP VENDOR FINDER ========================================================================= #}
{# Section Header #}

{{ _("platform.find_shop.title") }}

{{ _("platform.find_shop.subtitle") }}

{# Search Form #}
{# Result #} {# Help Text #}

{{ _("platform.find_shop.no_account") }} {{ _("platform.find_shop.signup_letzshop") }}{{ _("platform.find_shop.then_connect") }}

{# ========================================================================= FINAL CTA SECTION ========================================================================= #}

{{ _("platform.cta.title") }}

{{ _("platform.cta.subtitle", trial_days=trial_days) }}

{{ _("platform.cta.button") }}
{% endblock %} {% block extra_scripts %} {% endblock %}