summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/layouts/application.html.erb')
-rw-r--r--app/views/layouts/application.html.erb17
1 files changed, 13 insertions, 4 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index d956145..db94682 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -11,11 +11,14 @@
<%= javascript_importmap_tags %>
</head>
- <body class="flex flex-col min-h-screen bg-slate-100">
+ <body class="flex flex-col min-h-screen bg-orange-100 text-orange-900">
<nav class="flex flex-wrap items-center justify-between px-4 py-2 text-display">
<div class="flex flex-grow items-center space-x-8">
- <%= link_to "Cable Club", root_path, class: "text-xl" %>
+ <%= link_to root_path, class: "text-xl flex items-center space-x-4" do %>
+ <%= image_tag "poke_ball_original_small.png", size: 60 %>
+ <span>Cable Club</span>
+ <% end %>
<%= link_to "Runs", runs_path %>
</div>
<div class="space-x-8">
@@ -35,8 +38,14 @@
<%= yield %>
</main>
- <footer class="flex-shrink">
- <div class="max-w-screen-lg mx-auto pb-4">
+ <footer class="flex-shrink mt-28">
+ <div class="max-w-screen-lg mx-auto pb-4 flex items-center">
+ <div class="flex-1 italic">
+ <div>"Despite that, we never stop trying.<br>Why? It's a dream that never ends."</div>
+ <div>- Scientist, Mossdeep Space Center</div>
+ </div>
+ <div><%= image_tag "oddish.png", size: 120 %></div>
+ <div class="flex-1 text-right"><%= link_to "Source code", "https://git.aikuro.net/poems/cable-club" %></div>
</div>
</footer>
</body>