mirror of
https://github.com/we-promise/sure.git
synced 2026-04-28 00:14:23 +00:00
* add initial pages for Bank Sync and Lunch Flow * update breadcrumbs on Lunch Flow page * update content for Lunch Flow page * add norefeerrer to Github link * update lunch flow url * nest lunch_flow resource under bank_sync * add a provider link partial * remove trailing whitespaces * update providers style to match merchants page * remove separate lunch flow page * fix hover on dark mode * point lunch flow to custom sure landing page * [i18n] Bank Sync label * [i18n] API Keys * [i18n] Self-Hosting consistency * Security breadcrum, not "securities" default --------- Co-authored-by: Juan José Mata <juanjo.mata@gmail.com>
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
<%= content_for :page_title, "Bank Sync" %>
|
|
|
|
|
|
<div class="bg-container rounded-xl shadow-border-xs p-4">
|
|
<% if @providers.any? %>
|
|
<div class="rounded-xl bg-container-inset space-y-1 p-1">
|
|
<div class="flex items-center gap-1.5 px-4 py-2 text-xs font-medium text-secondary uppercase">
|
|
<p>PROVIDERS</p>
|
|
<span class="text-subdued">·</span>
|
|
<p><%= @providers.count %></p>
|
|
</div>
|
|
|
|
<div class="bg-container rounded-lg shadow-border-xs">
|
|
<div class="overflow-hidden rounded-lg">
|
|
<%= render partial: "provider_link", collection: @providers, spacer_template: "shared/ruler" %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% else %>
|
|
<div class="flex justify-center items-center py-20">
|
|
<div class="text-center flex flex-col items-center max-w-[300px]">
|
|
<p class="text-primary mb-1 font-medium text-sm">No providers configured</p>
|
|
<p class="text-secondary text-sm">Configure providers to link your bank accounts.</p>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
|