mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 07:14:47 +00:00
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT * [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT * Update stimulus controller references to use namespace * Fix remaining tests
22 lines
701 B
Plaintext
22 lines
701 B
Plaintext
<%# locals: (import:) %>
|
|
|
|
<div class="h-full flex flex-col justify-center items-center">
|
|
<div class="space-y-6 max-w-sm">
|
|
<div class="mx-auto bg-green-500/5 h-8 w-8 rounded-full flex items-center justify-center">
|
|
<%= icon "check", color: "success" %>
|
|
</div>
|
|
|
|
<div class="text-center space-y-2">
|
|
<h1 class="font-medium text-primary text-center text-3xl">Import successful</h1>
|
|
<p class="text-sm text-secondary">Your imported data has been successfully added to the app and is now ready for use.</p>
|
|
</div>
|
|
|
|
<%= render DS::Link.new(
|
|
text: "Back to dashboard",
|
|
variant: "primary",
|
|
full_width: true,
|
|
href: root_path
|
|
) %>
|
|
</div>
|
|
</div>
|