| 1 | <% use_header = true if local_assigns[:use_header].nil? %> |
| 2 | |
| 3 | <div class="promo-tools"> |
| 4 | <% if use_header %> |
| 5 | <h2>Try These Stupid 🤖 AI Tools</h2> |
| 6 | <% end %> |
| 7 | <ul class="nav nav-pills"> |
| 8 | <%= render( |
| 9 | "shared/partial_ai_tool", |
| 10 | href_text: "SplitFire 🔥", |
| 11 | href_link: splitfire_path, |
| 12 | active: active_menu == 'splitfire' |
| 13 | ) |
| 14 | %> |
| 15 | <%= render( |
| 16 | "shared/partial_ai_tool", |
| 17 | href_text: "KaroKowe 🎤", |
| 18 | href_link: karokowe_branding_path, |
| 19 | active: active_menu == 'karokowe' |
| 20 | ) |
| 21 | %> |
| 22 | <%= render( |
| 23 | "shared/partial_ai_tool", |
| 24 | href_text: "Bass64 🎸", |
| 25 | href_link: bass64_branding_path, |
| 26 | active: active_menu == 'bass64' |
| 27 | ) |
| 28 | %> |
| 29 | <%= render( |
| 30 | "shared/partial_ai_tool", |
| 31 | href_text: "Bonzo 🥁", |
| 32 | href_link: bonzo_branding_path, |
| 33 | active: active_menu == 'bonzo' |
| 34 | ) |
| 35 | %> |
| 36 | </ul> |
| 37 | </div> |