import Image from "next/image"; import { CardHeading, IconButton } from "@/components/shared/CardShared"; import { ChartIcon } from "@/components/shared/icons/ChartIcon"; import { Counter } from "@/components/shared/Counter"; import { RevealOnView } from "@/components/shared/RevealOnView"; const socialIcons = [ { src: "/images/tenext/messenger-logo-1.png", alt: "Messenger", width: 57, height: 59, }, { src: "/images/tenext/skype-logo.png", alt: "Skype", width: 56, height: 57, }, { src: "/images/tenext/telegram-symbol-1.png", alt: "Telegram", width: 59, height: 58, }, { src: "/images/tenext/discord-1.png", alt: "Discord", width: 54, height: 54, }, ]; export function CardsGrid() { return (
{/* Card 1 */}
Solutions Plugins
{socialIcons.map((icon) => ( {icon.alt} ))}
{/* Card 2 */}

Explore our comprehensive AI solutions dashboard designed to provide actionable business insights and drive innovation

{/* Card 3 (spans 2 columns) */}
); }