import Section from "@/components/Section"; import Button from "@/components/Button"; import Image from "@/components/Image"; import { text, content, apps } from "@/mocks/collaboration"; type CollaborationProps = {}; const Collaboration = ({}: CollaborationProps) => { return (

AI chat app for seamless collaboration

    {content.map((item) => (
  • Check
    {item.title}
    {item.text && (

    {item.text}

    )}
  • ))}

{text}

Brainwave
    {apps.map((app, index) => (
  • {app.title}
  • ))}
Curve 1
Curve 2
); }; export default Collaboration;