- Run Kubernetes on the Sovereign Agentic Cloud
+ Sovereign Edge Cloud Infrastructure
- Deploy K3s clusters on a global, self-healing mesh network.
- Your workloads run on sovereign, encrypted infrastructure, without centralized cloud control.
+ Run compute, storage, and AI resources on infrastructure you control.
-
- Works Alone. Works Together.
- Mycelium Cloud can run on any network fabric, or pair with Mycelium Network
- for sovereign connectivity.
+
+ The Mycelium Cloud runs on a distributed grid of independent nodes,
+ delivering secure, scalable performance wherever your users or data live.
diff --git a/src/pages/cloud/CloudHostingNew.tsx b/src/pages/cloud/CloudHostingNew.tsx
index c7c37ff..21afbb8 100644
--- a/src/pages/cloud/CloudHostingNew.tsx
+++ b/src/pages/cloud/CloudHostingNew.tsx
@@ -13,7 +13,6 @@ import { Eyebrow, H3, H4 } from "@/components/Texts"
const product = {
subtitle: 'capabilities',
name: 'What You Can Run on Mycelium Cloud',
- description: '
Host nodes, deploy workloads, or build private AI systems, all on infrastructure you own and control.
',
details: [
{
name: 'Kubernetes Clusters',
@@ -64,9 +63,6 @@ export function CloudHostingNew() {
-
{/* ✅ Details accordion */}
diff --git a/src/pages/cloud/CloudIntro.tsx b/src/pages/cloud/CloudIntro.tsx
new file mode 100644
index 0000000..a17a4ff
--- /dev/null
+++ b/src/pages/cloud/CloudIntro.tsx
@@ -0,0 +1,154 @@
+"use client";
+
+import { useState } from "react";
+import { CloudCodeTabs } from "./CloudCodeTabs";
+import { Eyebrow, H3, P } from "@/components/Texts";
+
+const tabs = [
+ {
+ id: "kubernetes",
+ label: "Managed Kubernetes",
+ content: {
+ item: "Managed Kubernetes",
+ desc:
+ "Create and manage clusters across distributed environments using standard Kubernetes tools.",
+
+ bullets: [
+ "Create and manage clusters on distributed nodes",
+ "Run workloads at the edge or across enterprise sites",
+ "Keep full ownership of data and orchestration",
+ "Use the Kubernetes ecosystem without modification",
+ ],
+ },
+ },
+
+ {
+ id: "vdc",
+ label: "Virtual Data Centers",
+ content: {
+ item: "Virtual Data Centers",
+ desc:
+ "Provision and manage full cloud environments without owning or maintaining servers.",
+
+ bullets: [
+ "Create dedicated environments for applications, databases, and internal services",
+ "Add or remove compute and storage resources instantly",
+ "Migrate workloads from cloud or on-prem systems",
+ "Meet compliance requirements by selecting where data resides",
+ "Benefit from continuous monitoring and automated recovery",
+ ],
+ },
+ },
+
+ {
+ id: "qsfs",
+ label: "Quantum Safe File System (QSFS)",
+ content: {
+ item: "Quantum Safe File System (QSFS)",
+ desc:
+ "Encrypted, redundant storage designed for high-security and high-availability workloads. Data is distributed across independent nodes and remains accessible even during failures or outages.",
+
+ bullets: [
+ "Secure file storage with quantum-safe encryption",
+ "Distributed replication for durability",
+ "Standard protocol support: S3, IPFS, WebDAV",
+ "Automatic scaling as data grows",
+ "Consistent performance for research, enterprise, and AI workloads",
+ ],
+ },
+ },
+];
+
+export function CloudIntro() {
+ const [active, setActive] = useState("kubernetes");
+ const current = tabs.find((t) => t.id === active)!.content;
+
+ return (
+
+ {/* Top Spacing Border */}
+
+
+
+
+ Host nodes, deploy workloads, or build private AI systems — all on
+ infrastructure you own and control. Mycelium gives you scalable compute,
+ secure storage, and sovereign orchestration without depending on
+ hyperscalers.
+