tonyassi commited on
Commit
84782e7
·
verified ·
1 Parent(s): ea50dca

Update templates/home.html

Browse files
Files changed (1) hide show
  1. templates/home.html +5 -4
templates/home.html CHANGED
@@ -50,13 +50,14 @@
50
  {% endif %}
51
 
52
 
53
- <div style="margin-top: 40px; margin-bottom: 40px;">
54
- <a href="/all-designers" style="background: black; color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-size: 16px; font-weight: bold; margin-right: 10px;">All Designers</a>
55
- <a href="/random-designers" style="background: black; color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-size: 16px; font-weight: bold; margin-right: 10px;">Explore Random Designers</a>
56
- <a href="/random-shows" style="background: black; color: white; padding: 10px 20px; border-radius: 6px; text-decoration: none; font-size: 16px; font-weight: bold;">Explore Random Shows</a>
57
  </div>
58
 
59
 
 
60
  <div class="grid" style="padding: 0 20px; margin-bottom: 40px;">
61
  {% for d in designer_cards %}
62
  <div class="card" onclick="window.location.href='/{{ d.slug }}'" style="cursor:pointer; text-align:center;">
 
50
  {% endif %}
51
 
52
 
53
+ <div class="button-row">
54
+ <a href="/all-designers" class="nav-button">All Designers</a>
55
+ <a href="/random-designers" class="nav-button">Explore Random Designers</a>
56
+ <a href="/random-shows" class="nav-button">Explore Random Shows</a>
57
  </div>
58
 
59
 
60
+
61
  <div class="grid" style="padding: 0 20px; margin-bottom: 40px;">
62
  {% for d in designer_cards %}
63
  <div class="card" onclick="window.location.href='/{{ d.slug }}'" style="cursor:pointer; text-align:center;">