From 26e241802da415ddb6bffe29832f767982cfe8b0 Mon Sep 17 00:00:00 2001 From: Nawaz Dhandala Date: Mon, 29 Dec 2025 21:57:53 +0000 Subject: [PATCH] feat: Refactor hero feature grid to use a dedicated product grid component --- Home/Views/Partials/hero-cards/product-grid.ejs | 15 +++++++++++++++ Home/Views/Partials/hero.ejs | 16 +--------------- 2 files changed, 16 insertions(+), 15 deletions(-) create mode 100644 Home/Views/Partials/hero-cards/product-grid.ejs diff --git a/Home/Views/Partials/hero-cards/product-grid.ejs b/Home/Views/Partials/hero-cards/product-grid.ejs new file mode 100644 index 0000000000..a542bdcb58 --- /dev/null +++ b/Home/Views/Partials/hero-cards/product-grid.ejs @@ -0,0 +1,15 @@ + +
+ <%- include('./status-page') -%> + <%- include('./incidents') -%> + <%- include('./monitoring') -%> + <%- include('./on-call') -%> + <%- include('./logs') -%> + <%- include('./metrics') -%> + <%- include('./traces') -%> + <%- include('./exceptions') -%> + <%- include('./workflows') -%> + <%- include('./dashboards') -%> +
+ +<%- include('./ai-agent') -%> diff --git a/Home/Views/Partials/hero.ejs b/Home/Views/Partials/hero.ejs index df8c81a546..b18fa98778 100644 --- a/Home/Views/Partials/hero.ejs +++ b/Home/Views/Partials/hero.ejs @@ -151,21 +151,7 @@ - -
- <%- 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') -%> -
- - <%- include('./hero-cards/ai-agent') -%> + <%- include('./hero-cards/product-grid') -%>