mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 22:34:47 +00:00
* First cut of a simplified "intro" UI layout * Linter * Add guest role and intro-only access * Fix guest role UI defaults (#940) Use enum predicate to avoid missing role helper. * Remove legacy user role mapping (#941) Drop the unused user role references in role normalization and SSO role mapping forms to avoid implying a role that never existed. Refs: #0 * Remove role normalization (#942) Remove role normalization Roles are now stored directly without legacy mappings. * Revert role mapping logic * Remove `normalize_role_settings` * Remove unnecessary migration * Make `member` the default * Broken `.erb` --------- Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
22 lines
933 B
Plaintext
22 lines
933 B
Plaintext
<% content_for :page_header do %>
|
|
<div class="space-y-2">
|
|
<h1 class="text-2xl font-semibold text-primary">Welcome!</h1>
|
|
<br/>
|
|
</div>
|
|
<% end %>
|
|
|
|
<div class="mx-auto max-w-3xl">
|
|
<div class="bg-container shadow-border-xs rounded-2xl p-8 text-center space-y-4">
|
|
<div class="flex justify-center">
|
|
<%= image_tag "logomark-color.svg", class: "w-16 h-16" %>
|
|
</div>
|
|
<h2 class="text-xl font-semibold text-primary">Intro experience coming soon</h2>
|
|
<p class="text-secondary">
|
|
We're building a richer onboarding journey to learn about your goals, milestones, and day-to-day needs. For now, head over to the chat sidebar to start a conversation with Sure and let us know where you are in your financial journey.
|
|
</p>
|
|
<div>
|
|
<%= link_to "Start chatting", chats_path, class: "inline-flex items-center gap-2 px-4 py-2 rounded-lg bg-primary text-white font-medium" %>
|
|
</div>
|
|
</div>
|
|
</div>
|