From 949cc90014b762ed325b39198a5a9d54116d2a83 Mon Sep 17 00:00:00 2001 From: Hassan Oladipupo <109126045+Hassan-oladipupo@users.noreply.github.com> Date: Fri, 29 May 2026 08:49:32 +0000 Subject: [PATCH] task done --- backend/demo/demo.tsx | 61 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 backend/demo/demo.tsx diff --git a/backend/demo/demo.tsx b/backend/demo/demo.tsx new file mode 100644 index 0000000..93afb30 --- /dev/null +++ b/backend/demo/demo.tsx @@ -0,0 +1,61 @@ +'use client'; + +import { CheckCircle } from 'lucide-react'; + +const features = [ + { + title: 'AI-Powered Intelligence', + description: 'Advanced machine learning models that detect, classify, and respond to incidents with precision.', + }, + { + title: 'Real-Time Monitoring', + description: 'Stay informed 24/7 with instant alerts and live updates on your operations and security.', + }, + { + title: 'Seamless Integration', + description: 'Works perfectly with your existing systems and workflows without disruption.', + }, + { + title: 'Global Expertise', + description: 'Access professional monitoring and insights from our team of experts worldwide.', + }, + { + title: 'Scalable Solutions', + description: 'From small operations to large enterprises, we scale with your needs.', + }, + { + title: 'Verified Results', + description: 'Transparent reporting and clear audit trails for every action and incident.', + }, +]; + +export function Features() { + return ( +
+
+
+

+ Why Choose Lisatech? +

+

+ Trusted by leading organizations for intelligent operations and security +

+
+ +
+ {features.map((feature) => ( +
+
+ +

{feature.title}

+
+

+ {feature.description} +

+
+ ))} +
+
+
+ ); +}