mirror of
https://github.com/we-promise/sure.git
synced 2026-04-15 01:54:07 +00:00
* Remove orphan function * Add centralized branding helpers and update locales * Remove _plus and add (proper) brand * No longer Sure, configurable * Consistency with compose file naming * Missed `product_name` mapping * Fix brand/product name in mailers * Product name in email reset flow * Fix i18n errors/tests * Fix password mailer brand/product name (again) * Missed hardcoded `Sure` in onboarding goals Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Juan José Mata <jjmata@jjmata.com> * PR nitpick on documentation * Missing interpolation key for invited UI * Orphan assets * New logos --------- Signed-off-by: Juan José Mata <jjmata@jjmata.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
<head>
|
|
<title><%= content_for(:title) || product_name %></title>
|
|
|
|
<%= csrf_meta_tags %>
|
|
<%= csp_meta_tag %>
|
|
|
|
<%= stylesheet_link_tag "tailwind", "data-turbo-track": "reload" %>
|
|
|
|
<%= javascript_include_tag "https://cdn.plaid.com/link/v2/stable/link-initialize.js" %>
|
|
<%= combobox_style_tag %>
|
|
|
|
<%= javascript_importmap_tags %>
|
|
<%= render "layouts/dark_mode_check" %>
|
|
<%= turbo_refreshes_with method: :morph, scroll: :preserve %>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="<%= product_name %>">
|
|
|
|
<meta name="msapplication-TileColor" content="#F9F9F9">
|
|
<meta name="theme-color" content="#F9F9F9">
|
|
|
|
<link rel="manifest" href="<%= pwa_manifest_path %>">
|
|
<link rel="apple-touch-icon" href="/logo-pwa.png">
|
|
<link rel="apple-touch-icon" sizes="512x512" href="/logo-pwa.png">
|
|
|
|
<%= yield :head %>
|
|
</head>
|