2025-02-21 11:57:59 -05:00
|
|
|
<head>
|
|
|
|
<title><%= content_for(:title) || "Maybe" %></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 %>
|
|
|
|
<%= turbo_refreshes_with method: :morph, scroll: :preserve %>
|
|
|
|
|
2025-04-18 18:53:10 +05:30
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover" />
|
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
2025-04-18 18:53:10 +05:30
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
2025-02-21 11:57:59 -05:00
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Maybe">
|
|
|
|
|
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
2025-04-18 18:53:10 +05:30
|
|
|
<link rel="manifest" href="<%= pwa_manifest_path %>">
|
|
|
|
<link rel="apple-touch-icon" href="/logo-pwa.png">
|
|
|
|
<link rel="apple-touch-icon" sizes="512x512" href="/icon.png">
|
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
<%= yield :head %>
|
|
|
|
</head>
|