import { FeatureCard } from '@/components/feature-card'; import { GetStartedButton } from '@/components/get-started-button'; import { Section, SectionHeader } from '@/components/section'; import { Button } from '@/components/ui/button'; import { ChartBarIcon, DollarSignIcon, LayoutDashboardIcon, RocketIcon, WorkflowIcon, } from 'lucide-react'; import Link from 'next/link'; import { CollaborationChart } from './collaboration-chart'; const features = [ { title: 'Visualize your data', description: 'See your data in a visual way. You can create advanced reports and more to understand', icon: ChartBarIcon, }, { title: 'Share & Collaborate', description: 'Build interactive dashboards and share insights with your team. Export reports, set up notifications, and keep everyone aligned.', icon: LayoutDashboardIcon, }, { title: 'Integrations', description: 'Get notified when new events are created, or forward specific events to your own systems with our east to use integrations.', icon: WorkflowIcon, }, ]; export function Collaboration() { return (
{features.map((feature) => (

{feature.title}

{feature.description}

))}
); }