"use client"; import React from "react"; import { motion } from "framer-motion"; import { H2, P } from '@/components/Texts'; import Ai21 from '@/components/logos/Ai21'; import Claude from '@/components/logos/Claude'; import BaiduCloud from '@/components/logos/BaiduCloud'; import ByteDance from '@/components/logos/ByteDance'; import DeepSeek from '@/components/logos/DeepSeek'; import DeepMind from '@/components/logos/DeepMind'; import Minimax from '@/components/logos/Minimax'; import Mistral from '@/components/logos/Mistral'; import Moonshot from '@/components/logos/Moonshot'; import AlibabaCloud from '@/components/logos/AlibabaCloud'; import TencentCloud from '@/components/logos/TencentCloud'; import OpenAI from '@/components/logos/OpenAI'; import XAI from '@/components/logos/XAI'; const row1 = [Ai21, Claude, BaiduCloud, ByteDance]; const row2 = [DeepSeek, DeepMind, Minimax, Mistral]; const row3 = [Moonshot, AlibabaCloud]; const row4 = [TencentCloud, OpenAI, XAI]; export function Companies() { return (
{/* Heading */}

Seamlessly Deploy the World’s Leading AI Models

Deploy and scale AI from top global providers on a decentralized, privacy-first infrastructure. Mycelium Cloud lets you integrate state-of-the-art intelligence into your workflows with full control, sovereignty, and cost efficiency.

{/* Animated Line */} {/* Logos grid */}
{[row1, row2, row3, row4].map((row, rowIndex) => ( {row.map((Logo, i) => (
))}
))}
); }