mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* WIP * WIP * WIP * WIP * WIP * WIP * WIP * format * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * WIP * fix conflict * fix conflict * chore: run rubocop * fix test * update PWA logo * fix tests * chore: lint * fix test * Refactor: Remove duplicate data attribute in activity partial and add chat form rendering in chats index --------- Co-authored-by: Josh Pigford <josh@joshpigford.com>
28 lines
2.1 KiB
Text
28 lines
2.1 KiB
Text
<%= content_for :page_title, "Feedback" %>
|
|
|
|
<div class="bg-container shadow-border-xs rounded-xl p-4">
|
|
<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>
|
|
<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 %>
|
|
<%= image_tag "github-icon.svg", class: "w-8 h-8 mb-2" %>
|
|
<span class="text-sm font-medium text-primary text-center">Write a feature request</span>
|
|
<% end %>
|
|
<% if self_hosted? %>
|
|
<%= 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 %>
|
|
<%= image_tag "github-icon.svg", class: "w-8 h-8 mb-2" %>
|
|
<span class="text-sm font-medium text-primary text-center">File a bug report</span>
|
|
<% end %>
|
|
<% else %>
|
|
<%= 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 %>
|
|
<%= lucide_icon "bug", class: "w-8 h-8 mb-2" %>
|
|
<span class="text-sm font-medium text-primary text-center">File a bug report</span>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<%= 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 %>
|
|
<%= image_tag "discord-icon.svg", class: "w-8 h-8 mb-2" %>
|
|
<span class="text-sm font-medium text-primary text-center">Discuss Maybe with others</span>
|
|
<% end %>
|
|
</div>
|
|
</div>
|