crimata-website/app/views/layouts/application.html.erb
Andrew Gundersen 008524db1b Remove dashboard, route post-checkout to home
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-01 21:57:07 -05:00

37 lines
1.5 KiB
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><%= content_for?(:title) ? yield(:title) : "Crimata" %></title>
<%= csrf_meta_tags %>
<%= csp_meta_tag %>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #fff; color: #111; }
header { padding: 1.5rem 2rem; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.5px; text-decoration: none; color: #111; }
nav a { margin-left: 1.5rem; text-decoration: none; color: #555; font-size: 0.95rem; }
nav a:hover { color: #111; }
main { max-width: 960px; margin: 0 auto; padding: 4rem 2rem; }
.btn { display: inline-block; background: #111; color: #fff; border: none; padding: 0.875rem 2.5rem; font-size: 1rem; font-weight: 600; border-radius: 8px; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.btn:hover { background: #333; }
</style>
</head>
<body>
<header>
<%= link_to "Crimata", root_path, class: "logo" %>
<nav>
<%= link_to "Pricing", pricing_path %>
<% if current_customer %>
<%= link_to "Sign out", logout_path %>
<% else %>
<%= link_to "Sign in", login_path %>
<% end %>
</nav>
</header>
<main>
<%= yield %>
</main>
</body>
</html>