import { Container } from '../../components/Container' import { Eyebrow, SectionHeader, P } from '../../components/Texts' const codeSamples = [ { title: 'Simple Deployment', description: 'Define deterministic workloads with familiar manifests that execute exactly as declared anywhere on the fabric.', language: 'yaml', code: `# Basic compute workload apiVersion: v1 kind: Deployment metadata: name: deterministic-app spec: replicas: 3 selector: matchLabels: app: deterministic-app template: metadata: labels: app: deterministic-app spec: containers: - name: app image: ubuntu:latest command: ["echo", "Deterministic deployment"]`, }, { title: 'Zero-Image Deployment', description: 'Use metadata-only images to launch workloads instantly with zero heavy artifacts to distribute.', language: 'yaml', code: `# Using zero-image technology apiVersion: v1 kind: Pod metadata: name: zero-image-pod spec: containers: - name: app image: "zero-image://ubuntu-latest" # Metadata-only image command: ["echo", "Running on zero-image"]`, }, { title: 'Smart Contract Orchestration', description: 'Automate workload lifecycles through cryptographically signed contracts that govern execution.', language: 'yaml', code: `# Smart contract orchestrated deployment apiVersion: v1 kind: ConfigMap metadata: name: deployment-contract data: contract: | smart_contract: signature: "cryptographically_signed_deployment" workload_spec: image: "ubuntu-latest" replicas: 3 verification_hash: "sha256_hash_of_workload"`, }, ] export function ComputeDeveloperExperience() { return (
Developer Experience Declarative workflows, deterministic results.

Ship workloads using the same declarative patterns you already trust. Mycelium Compute verifies and enforces every detail, from classic deployments to zero-image launches and smart contract upgrades.

{codeSamples.map((sample) => (

{sample.language}

{sample.title}

{sample.description}

                  {sample.code}
                
))}
) }