This commit is contained in:
ashley 2024-10-25 22:57:15 +00:00
parent 001a22e325
commit faad2b4d80

View file

@ -166,9 +166,9 @@ const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3);
<div class="features-container"> <div class="features-container">
<% randomFeatures.forEach(feature => { %> <% randomFeatures.forEach(feature => { %>
<div class="feature"> <div class="feature">
<div class="feature-icon"><%= feature.icon %></div> <div class="feature-icon"><%- feature.icon %></div>
<h3><%= feature.title %></h3> <h3><%- feature.title %></h3>
<p><%= feature.description %></p> <p><%- feature.description %></p>
</div> </div>
<% }) %> <% }) %>
</div> </div>