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

Your trial has <%= Current.family.days_left_in_trial %> 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: @plan == "annual" %> <%= render "subscriptions/plan_choice", form: form, plan: "monthly", checked: @plan == "monthly" %>
<%= render DS::Button.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" %>