feat: Refactor hero feature grid to use a dedicated product grid component

This commit is contained in:
Nawaz Dhandala 2025-12-29 21:57:53 +00:00
parent 94e1812293
commit 26e241802d
No known key found for this signature in database
GPG key ID: 96C5DCA24769DBCA
2 changed files with 16 additions and 15 deletions

View file

@ -0,0 +1,15 @@
<!-- Feature grid -->
<div class="mt-16 grid grid-cols-2 gap-4 sm:grid-cols-5 sm:gap-5 auto-rows-fr" id="hero-feature-grid">
<%- include('./status-page') -%>
<%- include('./incidents') -%>
<%- include('./monitoring') -%>
<%- include('./on-call') -%>
<%- include('./logs') -%>
<%- include('./metrics') -%>
<%- include('./traces') -%>
<%- include('./exceptions') -%>
<%- include('./workflows') -%>
<%- include('./dashboards') -%>
</div>
<%- include('./ai-agent') -%>

View file

@ -151,21 +151,7 @@
</a>
</div>
<!-- Feature grid -->
<div class="mt-16 grid grid-cols-2 gap-4 sm:grid-cols-5 sm:gap-5 auto-rows-fr" id="hero-feature-grid">
<%- include('./hero-cards/status-page') -%>
<%- include('./hero-cards/incidents') -%>
<%- include('./hero-cards/monitoring') -%>
<%- include('./hero-cards/on-call') -%>
<%- include('./hero-cards/logs') -%>
<%- include('./hero-cards/metrics') -%>
<%- include('./hero-cards/traces') -%>
<%- include('./hero-cards/exceptions') -%>
<%- include('./hero-cards/workflows') -%>
<%- include('./hero-cards/dashboards') -%>
</div>
<%- include('./hero-cards/ai-agent') -%>
<%- include('./hero-cards/product-grid') -%>
</div>
</div>
</div>