feat: implement basic info display for anemos

This commit is contained in:
insects 2025-03-10 22:25:45 +01:00
parent 06a12df43f
commit ce5d327ca2
34 changed files with 582 additions and 88 deletions

View file

@ -0,0 +1,34 @@
<header>
<img src="/icon.png" width="50" alt="eureka.coffee logo" />
<h1>eureka.coffee</h1>
</header>
<div class="new-buttons">
<%= form_tag "/new?zone=anemos", method: :post do %>
<button type="submit" class="new-button">
<img src="/wind.png" width="50" alt="Wind" /><br/>
Anemos
</button>
<% end %>
<%= form_tag "/new?zone=pagos", method: :post do %>
<button type="submit" class="new-button">
<img src="/ice.png" width="50" alt="Wind" /><br/>
Pagos
</button>
<% end %>
<%= form_tag "/new?zone=pyros", method: :post do %>
<button type="submit" class="new-button">
<img src="/fire.png" width="50" alt="Wind" /><br/>
Pyros
</button>
<% end %>
<%= form_tag "/new?zone=hydatos", method: :post do %>
<button type="submit" class="new-button">
<img src="/water.png" width="50" alt="Wind" /><br/>
Hydatos
</button>
<% end %>
</div>