DjayChucko commited on
Commit
f84147f
·
verified ·
1 Parent(s): 862ee9b

Manual changes saved

Browse files
Files changed (1) hide show
  1. intel.html +8 -4
intel.html CHANGED
@@ -249,14 +249,18 @@
249
  html += `<h2 class="text-2xl font-bold text-white mb-4">Comparison for: <span class="text-purple-400">${selectedProduct}</span></h2>`;
250
  html += `<p class="text-sm text-gray-400 mb-6">Category: ${row.Category}</p>`;
251
 
252
- html += `<div class="mb-6"><h3 class="text-lg font-semibold text-white mb-3 flex items-center"><i data-feather="zap" class="w-5 h-5 mr-2 text-yellow-400"></i>Key Differentiation & Talking Points</h3><p class="text-gray-200 bg-purple-900/30 p-4 rounded-lg">${row.KeyDifferentiator}</p></div>`;
253
-
254
- html += `<div><h3 class="text-lg font-semibold text-white mb-3 flex items-center"><i data-feather="shuffle" class="w-5 h-5 mr-2 text-cyan-400"></i>Competitor Equivalents</h3><div class="grid grid-cols-2 sm:grid-cols-3 gap-4 text-base">`;
255
  const competitors = { AWS: row.AWS, Azure: row.Azure, GCP: row.GCP, OVHcloud: row.OVHcloud, Nebius: row.Nebius, Outscale: row.Outscale, Ionos: row.Ionos, Coreweave: row.Coreweave, CleverCloud: row.CleverCloud };
256
  for (const [provider, product] of Object.entries(competitors)) {
257
  html += `<div><span class="font-semibold text-gray-100">${provider}:</span> <span class="text-gray-300">${product || 'N/A'}</span></div>`;
258
  }
259
- html += `</div></div></div>`;
 
 
 
 
 
260
 
261
  displayResults(html);
262
  feather.replace();
 
249
  html += `<h2 class="text-2xl font-bold text-white mb-4">Comparison for: <span class="text-purple-400">${selectedProduct}</span></h2>`;
250
  html += `<p class="text-sm text-gray-400 mb-6">Category: ${row.Category}</p>`;
251
 
252
+ // Competitor Equivalents Section
253
+ html += `<div class="mb-6"><h3 class="text-lg font-semibold text-white mb-3 flex items-center"><i data-feather="shuffle" class="w-5 h-5 mr-2 text-cyan-400"></i>Competitor Equivalents</h3><div class="grid grid-cols-2 sm:grid-cols-3 gap-4 text-base">`;
 
254
  const competitors = { AWS: row.AWS, Azure: row.Azure, GCP: row.GCP, OVHcloud: row.OVHcloud, Nebius: row.Nebius, Outscale: row.Outscale, Ionos: row.Ionos, Coreweave: row.Coreweave, CleverCloud: row.CleverCloud };
255
  for (const [provider, product] of Object.entries(competitors)) {
256
  html += `<div><span class="font-semibold text-gray-100">${provider}:</span> <span class="text-gray-300">${product || 'N/A'}</span></div>`;
257
  }
258
+ html += `</div></div>`;
259
+
260
+ // Key Differentiation Section (MOVED HERE)
261
+ html += `<div class="border-t border-purple-800 pt-6"><h3 class="text-lg font-semibold text-white mb-3 flex items-center"><i data-feather="zap" class="w-5 h-5 mr-2 text-yellow-400"></i>Key Differentiation & Talking Points</h3><p class="text-gray-200 bg-purple-900/30 p-4 rounded-lg">${row.KeyDifferentiator}</p></div>`;
262
+
263
+ html += `</div>`;
264
 
265
  displayResults(html);
266
  feather.replace();