What brings you to Maybe?
Select one or more goals that you have with using Maybe as your personal finance tool.
<%= form_with model: @user do |form| %>
<%= form.hidden_field :redirect_to, value: self_hosted? ? "home" : "trial" %>
<%= form.hidden_field :set_onboarding_goals_at, value: Time.current %>
<%= form.hidden_field :onboarded_at, value: Time.current %>
<% [
{ icon: "layers", label: "See all my accounts in one place", value: "unified_accounts" },
{ icon: "banknote", label: "Understand cashflow and expenses", value: "cashflow" },
{ icon: "pie-chart", label: "Manage financial plans and budgeting", value: "budgeting" },
{ icon: "users", label: "Manage finances with a partner", value: "partner" },
{ icon: "area-chart", label: "Track investments", value: "investments" },
{ icon: "bot", label: "Let AI help me understand my finances", value: "ai_insights" },
{ icon: "settings-2", label: "Analyze and optimize accounts", value: "optimization" },
{ icon: "frown", label: "Reduce financial stress or anxiety", value: "reduce_stress" }
].each do |goal| %>
<% end %>
<%= render DS::Button.new(
text: "Next",
full_width: true
) %>
<% end %>