diff --git a/src/pages/Home.jsx b/src/pages/Home.jsx index 473e957..c96557d 100644 --- a/src/pages/Home.jsx +++ b/src/pages/Home.jsx @@ -4,7 +4,7 @@ import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/com import { services } from '@/data/services' import { industries } from '@/data/industries' import { useNavigate } from 'react-router-dom' -import { MapPin, MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network, Headphones, UserCheck, Activity, ShieldCheck, HeartPulse, ShoppingCart, Factory, Landmark } from 'lucide-react' +import { MapPin, MessageCircle, Users, LifeBuoy, GraduationCap, Link as LinkIcon, Wifi, Network, Headphones, UserCheck, Activity, ShieldCheck, HeartPulse, ShoppingCart, Factory, Landmark, Building2 } from 'lucide-react' // Icon map for industries - converts icon string to lucide component const industryIcons = { @@ -133,7 +133,7 @@ const Home = () => {
{service.shortDesc}
- Industry-specific solutions designed to address your unique challenges and requirements. -
+{industry.homeDesc || 'Industry-specific solutions designed to address your unique challenges and requirements.'}
diff --git a/src/pages/Industries.jsx b/src/pages/Industries.jsx index 42d4ad9..027bb68 100644 --- a/src/pages/Industries.jsx +++ b/src/pages/Industries.jsx @@ -1,6 +1,15 @@ import { Helmet } from 'react-helmet-async' import { industries } from '@/data/industries' import { Link } from 'react-router-dom' +import { HeartPulse, ShoppingCart, Factory, Landmark, Building2 } from 'lucide-react' + +// Icon map for industries - converts icon string to lucide component +const industryIcons = { + 'heart-pulse': HeartPulse, + 'shopping-cart': ShoppingCart, + factory: Factory, + landmark: Landmark, +} const Industries = () => { return ( @@ -31,48 +40,49 @@ const Industries = () => {{industry.shortDesc}
- -{industry.shortDesc}
+ +