Previews

No matching results.

x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="Polaris-Card">
<div class="Polaris-Card__Header">
<h2 class="Polaris-Heading">Online store dashboard</h2>
</div>
<div class="Polaris-Card__Section">
<p>View a summary of your online store’s performance.</p>
</div>
<div class="Polaris-Card__Section">
<p>
View a summary of your online store’s performance, including sales,
visitors, top products, and referrals.
</p>
</div>
</div>
1
2
3
4
5
6
7
8
9
10
11
12
<%= polaris_card(title: "Online store dashboard") do |card| %>
<% card.section do %>
<p>View a summary of your online store’s performance.</p>
<% end %>
<% card.section do %>
<p>
View a summary of your online store’s performance, including sales,
visitors, top products, and referrals.
</p>
<% end %>
<% end %>