import { CloudArrowUpIcon, LockClosedIcon, ServerIcon, VideoCameraIcon, MicrophoneIcon, UserGroupIcon, ComputerDesktopIcon, } from '@heroicons/react/20/solid' const features = [ { name: 'HoloMeet.', description: 'Immersive, lifelike meetings with our state-of-the-art holographic conferencing technology.', icon: VideoCameraIcon, }, { name: 'Voice & Video Chat.', description: 'High-quality voice and video chat, ensuring clear and reliable communication.', icon: MicrophoneIcon, }, { name: 'Screen Sharing Tools.', description: 'Effortlessly share files, screens, and presentations with integrated tools.', icon: ComputerDesktopIcon, }, { name: 'Hosting Tools.', description: 'Powerful host tools that allow you to manage participants, set agendas, and facilitate smooth sessions.', icon: UserGroupIcon, }, ] export default function Communicate() { return (

Advanced Communication

Elevate your virtual interactions with cutting-edge communication features designed to keep you connected and engaged.

{features.map((feature) => (
))}
Product screenshot
) }