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} +

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