--- ### ALL PAGES ### layout: themes/[ site.theme.id ]/frontend/core/base #### THEME CONFIG #### theme: main: class: "pt-0" ### PAGE CONFIG ### # Hero Section hero: tagline: "Compare & Choose" headline: "{{ site.brand.name }} vs the" headline_accent: "competition" description: "Not sure if {{ site.brand.name }} is right for you? Compare us head-to-head with the most popular alternatives and see why thousands are making the switch." primary_button: text: "Get started free" icon: "rocket" href: "/pricing" class: "btn-light" secondary_button: text: "See pricing" icon: "tags" href: "/pricing" class: "btn-outline-light" # Alternatives Section alternatives: superheadline: icon: "scale-balanced" text: "Comparisons" headline: "Explore" headline_accent: "alternatives" subheadline: "In-depth comparisons to help you make the right choice" empty_message: "No alternatives available yet" view_comparison: "View full comparison" # Value Props Section value_props: superheadline: icon: "trophy" text: "Why us" headline: "Why people choose" headline_accent: "{{ site.brand.name }}" subheadline: "Here's what sets us apart from the rest" items: - title: "Lightning fast" description: "Built on modern infrastructure for blazing performance. No more waiting around." icon: "bolt" - title: "AI-Powered" description: "Smart automation built into every workflow to save you hours every week." icon: "sparkles" - title: "24/7 Support" description: "Real humans ready to help whenever you need it. Average response time under 5 minutes." icon: "headset" # Stats Section stats: - number: "50,000+" label: "Active users" sublabel: "From 120+ Countries" icon: "users" color: "primary" - number: "4.9" label: "Average rating" icon: "star" color: "warning" show_stars: true - number: "99.99%" label: "Uptime" sublabel: "Enterprise-Grade" icon: "shield-check" color: "success" - number: "24/7" label: "Support" sublabel: "Real humans" icon: "headset" color: "info" # CTA Section cta: superheadline: icon: "rocket" text: "Get started" headline: "Ready to make the" headline_accent: "switch?" description: "Join thousands of happy users who chose {{ site.brand.name }}. Start your free trial today — no credit card required." primary_button: text: "Start free trial" icon: "rocket" href: "/pricing" secondary_button: text: "Talk to sales" icon: "comments" href: "/contact" ---
{% iftruthy page.resolved.hero.tagline %}

{{ page.resolved.hero.tagline }}

{% endiftruthy %}

{{ page.resolved.hero.headline }} {{ page.resolved.hero.headline_accent }}

{% iftruthy page.resolved.hero.description %}

{{ page.resolved.hero.description }}

{% endiftruthy %} {% assign primary_btn_class = page.resolved.hero.primary_button.class | default: "btn-light" %} {% assign secondary_btn_class = page.resolved.hero.secondary_button.class | default: "btn-outline-light" %}
{% iftruthy page.resolved.alternatives.superheadline.text %} {% iftruthy page.resolved.alternatives.superheadline.icon %} {% uj_icon page.resolved.alternatives.superheadline.icon, "me-1" %} {% endiftruthy %} {{ page.resolved.alternatives.superheadline.text }} {% endiftruthy %}

{{ page.resolved.alternatives.headline }} {% iftruthy page.resolved.alternatives.headline_accent %} {{ page.resolved.alternatives.headline_accent }} {% endiftruthy %}

{% iftruthy page.resolved.alternatives.subheadline %}

{{ page.resolved.alternatives.subheadline }}

{% endiftruthy %}
{% if site.alternatives %} {% assign alternatives = site.alternatives | sort: 'alternative.competitor.name' %} {% else %} {% assign alternatives = nil %} {% endif %} {% if alternatives and alternatives.size > 0 %}
{% for item in alternatives %} {% if item.draft and jekyll.environment == 'production' %} {% continue %} {% endif %}
{% uj_icon "scale-balanced", "text-white fs-5" %}

{{ site.brand.name }} vs {{ item.alternative.competitor.name }}

{% iftruthy item.alternative.competitor.description %}

{{ item.alternative.competitor.description }}

{% endiftruthy %} {{ page.resolved.alternatives.view_comparison }} {% uj_icon "arrow-right", "ms-2" %}
{% endfor %}
{% else %}
{% uj_icon "box-open", "display-4 mb-3 opacity-50" %}

{{ page.resolved.alternatives.empty_message }}

{% endif %}
{% assign value_props_size = page.resolved.value_props.items | size %} {% if value_props_size > 0 %}
{% iftruthy page.resolved.value_props.superheadline.text %} {% iftruthy page.resolved.value_props.superheadline.icon %} {% uj_icon page.resolved.value_props.superheadline.icon, "me-1" %} {% endiftruthy %} {{ page.resolved.value_props.superheadline.text }} {% endiftruthy %}

{{ page.resolved.value_props.headline }} {% iftruthy page.resolved.value_props.headline_accent %} {{ page.resolved.value_props.headline_accent }} {% endiftruthy %}

{% iftruthy page.resolved.value_props.subheadline %}

{{ page.resolved.value_props.subheadline }}

{% endiftruthy %}
{% for prop in page.resolved.value_props.items %}
{% uj_icon prop.icon, "display-4 text-primary" %}

{{ prop.title }}

{{ prop.description }}

{% endfor %}
{% endif %} {% assign stats_size = page.resolved.stats | size %} {% if stats_size > 0 %}
{% for stat in page.resolved.stats %}
{% uj_icon stat.icon, "text-{{ stat.color }} display-4" %}

{{ stat.number }}

{% iftruthy stat.show_stars %}
{% for i in (1..5) %} {% uj_icon "star", "text-{{ stat.color }}" %} {% endfor %}
{% endiftruthy %}

{{ stat.label }}

{% iftruthy stat.sublabel %}

{{ stat.sublabel }}

{% endiftruthy %}
{% endfor %}
{% endif %} {% iftruthy page.resolved.cta.headline %}
{% uj_icon "rocket", "text-white" %}
{% uj_icon "sparkles", "text-white" %}
{% iftruthy page.resolved.cta.superheadline.text %} {% iftruthy page.resolved.cta.superheadline.icon %} {% uj_icon page.resolved.cta.superheadline.icon, "me-1" %} {% endiftruthy %} {{ page.resolved.cta.superheadline.text }} {% endiftruthy %}

{{ page.resolved.cta.headline }} {% iftruthy page.resolved.cta.headline_accent %} {{ page.resolved.cta.headline_accent }} {% endiftruthy %}

{% iftruthy page.resolved.cta.description %}

{{ page.resolved.cta.description }}

{% endiftruthy %}
{% endiftruthy %} {{ content | uj_content_format }}