'use client' import React, { useEffect, useMemo, useRef, useState } from 'react' import clsx from 'clsx' import { useInView } from 'framer-motion' import { Container } from '@/components/Container' 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() { 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.

) }