diff --git a/src/app/alerts/page.tsx b/src/app/alerts/page.tsx index cac5483..1716a24 100644 --- a/src/app/alerts/page.tsx +++ b/src/app/alerts/page.tsx @@ -6,6 +6,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import SplitAbout from '@/components/sections/about/SplitAbout'; +import { Car, Lock, Cable, Router, Fuel, BatteryCharging, Thermometer, Oil, Tyre, AirVent } from "lucide-react"; export default function LandingPage() { return ( @@ -26,25 +27,15 @@ export default function LandingPage() { @@ -58,17 +49,11 @@ export default function LandingPage() { description="Stay informed and prevent critical issues with our smart notification system. Receive timely alerts directly to your device, ensuring you're always one step ahead in vehicle maintenance and safety." bulletPoints={[ { - title: "Customizable Alert Thresholds", - description: "Set personalized limits for various parameters to receive alerts tailored to your needs.", - }, + title: "Customizable Alert Thresholds", description: "Set personalized limits for various parameters to receive alerts tailored to your needs."}, { - title: "Multi-Channel Notifications", - description: "Get alerts via email, in-app notifications, or even SMS for critical events.", - }, + title: "Multi-Channel Notifications", description: "Get alerts via email, in-app notifications, or even SMS for critical events."}, { - title: "Historical Alert Logging", - description: "Review past alerts to track recurring issues and monitor trends over time.", - }, + title: "Historical Alert Logging", description: "Review past alerts to track recurring issues and monitor trends over time."}, ]} imageSrc="http://img.b2bpic.net/free-photo/close-up-fuel-level-gauge-vehicle_23-2150163703.jpg" imageAlt="smartphone vehicle alerts app" @@ -83,67 +68,43 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Low Fuel & Battery Alerts", - description: "Receive timely warnings when fuel or battery levels drop below critical thresholds.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-fuel-level-gauge-vehicle_23-2150163689.jpg", - imageAlt: "dashboard fuel level indicator", - }, + title: "Low Fuel & Battery Alerts", description: "Receive timely warnings when fuel or battery levels drop below critical thresholds.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/close-up-fuel-level-gauge-vehicle_23-2150163689.jpg", imageAlt: "dashboard fuel level indicator"}, items: [ { icon: Fuel, - text: "Low Fuel Warning", - }, + text: "Low Fuel Warning"}, { icon: BatteryCharging, - text: "Low Battery Alert", - }, + text: "Low Battery Alert"}, ], - reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/blurred-traffic-light-trails-road_1359-720.jpg?_wi=5", - imageAlt: "dashboard fuel level indicator", + reverse: false }, { - title: "Engine & System Health Warnings", - description: "Get notified about potential engine overheating, oil pressure drops, or other system malfunctions.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/man-adjusting-thermostat-wall_23-2152024178.jpg", - imageAlt: "dashboard engine temperature widget", - }, + title: "Engine & System Health Warnings", description: "Get notified about potential engine overheating, oil pressure drops, or other system malfunctions.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/man-adjusting-thermostat-wall_23-2152024178.jpg", imageAlt: "dashboard engine temperature widget"}, items: [ { icon: Thermometer, - text: "Engine Overheating", - }, + text: "Engine Overheating"}, { icon: Oil, - text: "Low Oil Pressure", - }, + text: "Low Oil Pressure"}, ], - reverse: true, - imageSrc: "http://img.b2bpic.net/free-photo/male-bus-driver-portrait_23-2151582494.jpg?_wi=5", - imageAlt: "dashboard fuel level indicator", + reverse: true }, { - title: "Tire Pressure Monitoring", - description: "Ensure optimal tire health and safety with immediate alerts for under or over-inflated tires.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/destruction-smartphone-scene_23-2151500073.jpg", - imageAlt: "smart vehicle notifications app", - }, + title: "Tire Pressure Monitoring", description: "Ensure optimal tire health and safety with immediate alerts for under or over-inflated tires.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/destruction-smartphone-scene_23-2151500073.jpg", imageAlt: "smart vehicle notifications app"}, items: [ { icon: Tyre, - text: "Low Tire Pressure", - }, + text: "Low Tire Pressure"}, { icon: AirVent, - text: "Tire Leak Detection", - }, + text: "Tire Leak Detection"}, ], - reverse: false, - imageSrc: "http://img.b2bpic.net/free-photo/little-girl-uses-smartphone-while-sitting-her-room_169016-18389.jpg?_wi=3", - imageAlt: "dashboard fuel level indicator", + reverse: false }, ]} title="Comprehensive Alert Categories" @@ -155,58 +116,35 @@ export default function LandingPage() {