mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-11 19:56:44 +00:00
feat: Refactor hero feature grid to use a dedicated product grid component
This commit is contained in:
parent
94e1812293
commit
26e241802d
2 changed files with 16 additions and 15 deletions
15
Home/Views/Partials/hero-cards/product-grid.ejs
Normal file
15
Home/Views/Partials/hero-cards/product-grid.ejs
Normal 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') -%>
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue