2025-02-21 11:57:59 -05:00
|
|
|
<%= content_for :page_title, "Feedback" %>
|
2024-08-27 17:10:31 -04:00
|
|
|
|
2025-04-11 09:28:00 -05:00
|
|
|
<div class="bg-container shadow-border-xs rounded-xl p-4">
|
2025-02-21 11:57:59 -05:00
|
|
|
<h2 class="text-lg font-medium text-primary mb-1">Leave feedback</h2>
|
|
|
|
<p class="text-sm text-secondary mb-4">Let us know if you have any specific feedback. Feel free to include links to videos or screenshots.</p>
|
2025-04-18 18:53:10 +05:30
|
|
|
<div class="flex flex-col md:flex-row gap-4">
|
|
|
|
<%= link_to "https://github.com/maybe-finance/maybe/discussions/categories/feature-requests", target: "_blank", rel: "noopener noreferrer", class: "w-full md:w-1/3 flex flex-col items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-gray-50" do %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= image_tag "github-icon.svg", class: "w-8 h-8 mb-2" %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<span class="text-sm font-medium text-primary text-center">Write a feature request</span>
|
2025-02-21 11:57:59 -05:00
|
|
|
<% end %>
|
|
|
|
<% if self_hosted? %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<%= link_to "https://github.com/maybe-finance/maybe/issues/new?assignees=&labels=bug&template=bug_report.md&title=", target: "_blank", rel: "noopener noreferrer", class: "w-full md:w-1/3 flex flex-col items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-gray-50" do %>
|
2024-10-08 10:50:49 -05:00
|
|
|
<%= image_tag "github-icon.svg", class: "w-8 h-8 mb-2" %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<span class="text-sm font-medium text-primary text-center">File a bug report</span>
|
2024-09-09 16:54:56 -04:00
|
|
|
<% end %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<% else %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<%= link_to "mailto:hello@maybefinance.com", class: "w-full md:w-1/3 flex flex-col items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-gray-50", onclick: "Intercom('showNewMessage'); return false;" do %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= lucide_icon "bug", class: "w-8 h-8 mb-2" %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<span class="text-sm font-medium text-primary text-center">File a bug report</span>
|
2024-09-09 16:54:56 -04:00
|
|
|
<% end %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<% end %>
|
2024-09-09 16:54:56 -04:00
|
|
|
|
2025-04-18 18:53:10 +05:30
|
|
|
<%= link_to "https://link.maybe.co/discord", target: "_blank", rel: "noopener noreferrer", class: "w-full md:w-1/3 flex flex-col items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-gray-50" do %>
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= image_tag "discord-icon.svg", class: "w-8 h-8 mb-2" %>
|
2025-04-18 18:53:10 +05:30
|
|
|
<span class="text-sm font-medium text-primary text-center">Discuss Maybe with others</span>
|
2025-02-21 11:57:59 -05:00
|
|
|
<% end %>
|
2024-04-18 07:56:51 -04:00
|
|
|
</div>
|
|
|
|
</div>
|