<%= image_tag "logo-color.png", class: "w-16 mb-6" %> <% if Current.family.trialing? %>

Your trial has <%= Current.family.trial_remaining_days %> days remaining

<% else %>

Your trial is over

<% end %>

Unlock Maybe today

To continue using Maybe pick a plan below.

<%= form_with url: new_subscription_path, method: :get, class: "max-w-xs", data: { turbo: false } do |form| %>
<%= render "subscriptions/plan_choice", form: form, plan: "annual", checked: params[:plan] == "annual" || params[:plan].blank? %> <%= render "subscriptions/plan_choice", form: form, plan: "monthly", checked: params[:plan] == "monthly" %>
<%= render ButtonComponent.new( text: "Subscribe and unlock Maybe", variant: "primary", full_width: true ) %>

In the next step, you'll be redirected to Stripe which handles our billing.

<% end %>
<%= render "layouts/shared/footer" %>