import { Popover, PopoverButton, PopoverPanel } from '@headlessui/react' import { FaTelegramPlane, FaTwitter, FaYoutube, FaInstagram, FaLinkedin, FaFacebookF } from 'react-icons/fa' // Importing specific icons import { FaSquareXTwitter } from "react-icons/fa6"; const features = [ { name: 'Telegram', description: 'Connect with our community in real-time, and participate in discussions about the future of virtual worlds.', icon: FaTelegramPlane, link: 'https://t.me/+wLcrJaC_DTw0NTVk', // Replace with actual Telegram link }, { name: 'X', description: 'Follow us on X to receive the latest updates, insights, and news from OurVerse and our community.', icon: FaSquareXTwitter, link: 'https://x.com/OurVerseTF', // Replace with actual Twitter link }, { name: 'YouTube', description: "Dive deep into product demos, event recaps, and videos that showcase how we're revolutionizing virtual experiences.", icon: FaYoutube, link: 'https://www.youtube.com/channel/UCavIIyki4cYFAUysi0aEDeA', // Replace with actual YouTube link }, { name: 'Instagram', description: "Follow us on Instagram for sneak peeks of upcoming projects, community highlights, and more.", icon: FaInstagram, link: 'https://www.instagram.com/ourversetf/', // Replace with actual Instagram link }, { name: 'LinkedIn', description: "Connect and stay informed on industry insights, partnerships, and professional opportunities.", icon: FaLinkedin, link: 'https://www.linkedin.com/company/ourversetf/', // Replace with actual LinkedIn link }, { name: 'Facebook', description: "Join our community on Facebook to follow and be part of discussions about the evolution of immersive virtual experiences.", icon: FaFacebookF, link: 'https://www.facebook.com/profile.php?id=61566233156241', // Replace with actual Facebook link }, ] export default function Socials() { return (

Socials

Get Involved

Be a part of our global community by participating in open discussions and follow the most recent updates and news from OurVerse.

{features.map((feature) => (

{feature.name}

{feature.description}

))}
) }