mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-09 15:35:22 +02:00
* Add lookbook + viewcomponent, organize design system file * Build menu component * Button updates * More button fixes * Replace all menus with new ViewComponent * Checkpoint: fix tests, all buttons and menus converted * Split into Link and Button components for clarity * Button cleanup * Simplify custom confirmation configuration in views * Finalize button, link component API * Add toggle field to custom form builder + Component * Basic tabs component * Custom tabs, convert all menu / tab instances in app * Gem updates * Centralized icon helper * Update all icon usage to central helper * Lint fixes * Centralize all disclosure instances * Dialog replacements * Consolidation of all dialog styles * Test fixes * Fix app layout issues, move to component with slots * Layout simplification * Flakey test fix * Fix dashboard mobile issues * Finalize homepage * Lint fixes * Fix shadows and borders in dark mode * Fix tests * Remove stale class * Fix filled icon logic * Move transparent? to public interface
29 lines
2.1 KiB
Text
29 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-container-hover" 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-container-hover" 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 %>
|
|
<%= tag.button class: "w-full md:w-1/3 flex flex-col gap-2 items-center p-4 border border-alpha-black-25 rounded-xl hover:bg-container-hover", data: { action: "intercom#show" } 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 %>
|
|
<% 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-container-hover" 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>
|