<%= t("onboardings.goals.title") %>
<%= t("onboardings.goals.subtitle", product_name: product_name) %>
<%= 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: t("onboardings.goals.unified_accounts"), value: "unified_accounts" },
{ icon: "banknote", label: t("onboardings.goals.cashflow"), value: "cashflow" },
{ icon: "pie-chart", label: t("onboardings.goals.budgeting"), value: "budgeting" },
{ icon: "users", label: t("onboardings.goals.partner"), value: "partner" },
{ icon: "area-chart", label: t("onboardings.goals.investments"), value: "investments" },
{ icon: "bot", label: t("onboardings.goals.ai_insights"), value: "ai_insights" },
{ icon: "settings-2", label: t("onboardings.goals.optimization"), value: "optimization" },
{ icon: "frown", label: t("onboardings.goals.reduce_stress"), value: "reduce_stress" }
].each do |goal| %>
<% end %>
<%= render DS::Button.new(
text: t("onboardings.goals.submit"),
full_width: true
) %>
<% end %>