'use client' import React, { useRef } from 'react' import { motion, useInView } from 'framer-motion' import { H2, P, CT, CP } from '@/components/Texts' import { TbCircleNumber1Filled, TbCircleNumber2Filled, TbCircleNumber3Filled } from 'react-icons/tb' const features = [ { name: 'Choose Your Intelligence', description: 'Explore a library of leading LLMs and agentic functions. Pick the ones that fit your use case, from general assistants to specialized reasoning models.', icon: TbCircleNumber1Filled, }, { name: 'Add Your Knowledge', description: 'Connect your data or knowledge base to enable personalized, context-aware results while keeping your information private.', icon: TbCircleNumber2Filled, }, { name: 'Define Your Network', description: 'Set up and manage your nodes with ease. Scale compute and storage as you grow, while staying fully sovereign and decentralized.', icon: TbCircleNumber3Filled, }, ] export function Steps() { const ref = useRef(null); const isInView = useInView(ref, { once: true }); return (

Deploy Scalable LLMs and AI Agents in Seconds

Launch and scale intelligence on your own terms. Mycelium Cloud makes it simple to deploy models, integrate knowledge, and run everything on a network you control.

{features.map((feature, index) => ( {feature.name} {feature.description} ))}
) }