diff --git a/src/components/Communicate.jsx b/src/components/Communicate.jsx new file mode 100644 index 0000000..73c7d2d --- /dev/null +++ b/src/components/Communicate.jsx @@ -0,0 +1,64 @@ +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 ( +
+
+
+
+
+

Features

+

Advanced Communication

+

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

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