mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
* Add geist font * Design system css file * Add cursor ui/ux rules * Add shadows and shadow borders * Replace primitives with tokens for common text and backgrounds * Organize css * Update switch and checkbox class names * Add back global color variables
23 lines
737 B
Plaintext
23 lines
737 B
Plaintext
<%= content_for :header_nav do %>
|
|
<%= render "imports/nav", import: @import %>
|
|
<% end %>
|
|
|
|
<%= content_for :previous_path, import_upload_path(@import) %>
|
|
|
|
<div>
|
|
<div class="space-y-4">
|
|
<div class="text-center space-y-2">
|
|
<h1 class="text-3xl text-primary font-medium"><%= t(".title") %></h1>
|
|
<p class="text-secondary text-sm"><%= t(".description") %></p>
|
|
</div>
|
|
|
|
<div class="mx-auto max-w-lg">
|
|
<%= render partial: permitted_import_configuration_path(@import), locals: { import: @import } %>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mx-auto max-w-5xl my-12">
|
|
<%= render "imports/table", headers: @import.csv_headers, rows: @import.csv_sample, caption: "Sample data from your uploaded CSV" %>
|
|
</div>
|
|
</div>
|