hackatime/app/views/errors/show.html.erb

26 lines
1.2 KiB
Text

<div class="flex flex-col items-center justify-center text-center p-8 max-w-3xl">
<div class="mb-6">
<div class="text-8xl font-bold text-primary mb-2"><%= @status_code %></div>
<h1 class="text-3xl font-bold text-white mb-4"><%= @title %></h1>
</div>
<div class="bg-dark rounded-xl p-6 mb-6 border border-darkless">
<p class="text-muted text-lg"><%= @message %></p>
</div>
<div class="flex flex-col sm:flex-row gap-4">
<%= link_to 'Go Home', root_path, class: 'px-6 py-3 bg-primary text-white rounded-lg font-medium hover:bg-primary/75 transition-colors' %>
<button onclick="history.back()" class="px-6 py-3 bg-dark text-white rounded-lg font-medium hover:bg-darkless transition-colors border border-darkless cursor-pointer">Go Back</button>
</div>
<p class="mt-8 text-sm text-muted">
If this problem persists, please contact us on
<%= link_to 'Slack', 'https://hackclub.slack.com', class: 'text-primary hover:underline', target: '_blank' %>.
</p>
<% if @sentry_event_id.present? %>
<div class="mt-4 p-3 bg-darkless rounded-lg border border-dark">
<p class="text-xs text-muted">Error ID: <code class="text-primary select-all"><%= @sentry_event_id %></code></p>
</div>
<% end %>
</div>