diff --git a/dealplustech-astro/src/pages/products/[slug].astro b/dealplustech-astro/src/pages/products/[slug].astro
index 2701951b4..e5123047a 100644
--- a/dealplustech-astro/src/pages/products/[slug].astro
+++ b/dealplustech-astro/src/pages/products/[slug].astro
@@ -52,19 +52,41 @@ const productTables = productData?.productTables || [];
{productTables.map((table, tableIndex) => (
-
-
+
+
{table.tableName}
-
-
-
-
- {table.headers.map((header, headerIndex) => (
- |
- {header}
- |
+
+
+
+
+
+ {table.headers.map((header, headerIndex) => (
+ |
+ {header}
+ |
+ ))}
+
+
+
+ {table.rows.map((row, rowIndex) => (
+
+ {row.map((cell, cellIndex) => (
+ |
+ {cell}
+ |
+ ))}
+
))}
+
+
+
+
+
+ ))}
+
+
+ )})}