"use client"; import { motion } from "framer-motion"; import { SectionHeader, P, Eyebrow, CT, CP } from "@/components/Texts"; import type { ComponentPropsWithoutRef } from "react"; type CircleIconProps = ComponentPropsWithoutRef<"svg">; const CircleNumber1Icon = (props: CircleIconProps) => ( ); const CircleNumber2Icon = (props: CircleIconProps) => ( ); const CircleNumber3Icon = (props: CircleIconProps) => ( ); 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: CircleNumber1Icon, }, { name: 'Add Your Knowledge', description: 'Connect your data or knowledge base to enable personalized, context-aware results while keeping your information private.', icon: CircleNumber2Icon, }, { 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: CircleNumber3Icon, }, ]; export function DeploySection() { return (
Get Started Deploy Scalable LLMs and AI Agents

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} ))}
); }