diff --git a/src/assets/images/hyper_intelligence_bg_image.jpg b/src/assets/images/hyper_intelligence_bg_image.jpg new file mode 100644 index 0000000..ce0e6e8 Binary files /dev/null and b/src/assets/images/hyper_intelligence_bg_image.jpg differ diff --git a/src/components/IntelligenceMap.jsx b/src/components/IntelligenceMap.jsx index ba569ae..9b0b380 100644 --- a/src/components/IntelligenceMap.jsx +++ b/src/components/IntelligenceMap.jsx @@ -1,11 +1,13 @@ import React, { useState, useEffect } from 'react'; import { Icons } from './landing/constants'; +import MapBg from '../assets/images/hyper_intelligence_bg_image.jpg'; -// Updated with DFW specific locations (roughly positioned for a conceptual map) +// Updated with Residential & Commercial mix const hotspots = [ - { id: 1, top: '45%', left: '65%', address: '2800 Routh St, Dallas', problem: 'Hail Impact (Severe)', gain: '+$28k Opportunity', weather: 'Hail Expected', status: 'Action Required' }, - { id: 2, top: '20%', left: '55%', address: 'Legacy West, Plano', problem: 'Thermal Leak Detected', gain: '+$145k Commercial', weather: 'Clear', status: 'Monitoring' }, - { id: 3, top: '60%', left: '35%', address: 'Sundance Sq, Fort Worth', problem: 'Missing Shingles', gain: '+$15k Repair', weather: 'Rain Soon', status: 'Urgent' }, + { id: 1, top: '45%', left: '65%', address: 'Preston Royal Village', type: 'Commercial', problem: 'Roof Membrane Uplift', gain: '+$8.5M Value', weather: 'Hail Expected', status: 'Urgent' }, + { id: 2, top: '28%', left: '42%', address: 'Highland Park Place', type: 'Commercial', problem: 'HVAC Unit Leakage', gain: '+$22M Asset', weather: 'Clear', status: 'Monitoring' }, + { id: 3, top: '55%', left: '25%', address: '4200 Beverly Dr', type: 'Residential', problem: 'Slate Tile Damage', gain: '+$3.2M Estate', weather: 'Rain Soon', status: 'Action Required' }, + { id: 4, top: '70%', left: '48%', address: '3505 Lexington Ave', type: 'Residential', problem: 'Asphalt Shingle Loss', gain: '+$950k Home', weather: 'Windy', status: 'Low Priority' }, ]; const IntelligenceMap = () => { @@ -41,9 +43,9 @@ const IntelligenceMap = () => {
{/* Aerial/Satellite View of a Grid City */} DFW Metroplex Map Overlay {/* Map Grid Overlay */} @@ -55,7 +57,7 @@ const IntelligenceMap = () => {
Active Region
-
North Texas / DFW
+
DFW Zone 2
@@ -85,16 +87,16 @@ const IntelligenceMap = () => { onClick={() => setActiveSpot(spot)} > {/* Radar Ripple Effect */} -
+
{/* Price Tag Pin */}
-
+
{spot.gain}
{/* Pin Head */} -
+
{/* Pin Line */}
@@ -169,9 +171,8 @@ const IntelligenceMap = () => {
-
- > ANALYSIS: 85% probability of insurance approval due to recent hail corridor overlap in zip code 75201. -
+ > ANALYSIS: {activeSpot.type === 'Commercial' ? 'High-value commercial asset at risk. Immediate inspection recommended to prevent business interruption.' : '85% probability of insurance approval due to recent hail corridor overlap in zip code 75201.'} +