import { MainLayout } from '@/components/layout/MainLayout' import { BarChart3, Brain, Gauge, LineChart, Users2, Zap } from 'lucide-react' const features = [ { name: 'AI-Powered Analytics', description: 'Leverage advanced machine learning algorithms to uncover hidden patterns and insights in your data.', icon: Brain, }, { name: 'Real-time Monitoring', description: 'Track key metrics and performance indicators in real-time with automated alerts and notifications.', icon: Gauge, }, { name: 'Custom Dashboards', description: 'Create personalized dashboards with drag-and-drop widgets and customizable visualizations.', icon: BarChart3, }, { name: 'Predictive Analytics', description: 'Forecast trends and make data-driven decisions with our predictive modeling capabilities.', icon: LineChart, }, { name: 'Team Collaboration', description: 'Work seamlessly with your team through shared dashboards, comments, and annotations.', icon: Users2, }, { name: 'Automated Insights', description: 'Get automated insights and recommendations powered by our advanced AI engine.', icon: Zap, }, ] export default function FeaturesPage() { return (

Powerful Features for Data-Driven Teams

Everything you need to analyze, visualize, and act on your data with confidence.

{features.map((feature) => (

{feature.description}

))}
) }