From 618e1b0f5bca107b364e978e6c5420dcbc3d238d Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Mon, 17 Nov 2025 15:56:40 +0100 Subject: [PATCH] refactor: improve punctuation consistency and add spacing in multiple components - Replaced em dashes with commas in AgentPro descriptions for "Local Execution" and "Private Data Access" - Changed em dash to comma in CloudPros description for better readability - Removed em dash in NetworkUsecases "Service-to-Service Networking" description - Added bottom spacing elements to NodeBenefits with border styling and padding --- src/pages/agents/AgentPro.tsx | 4 ++-- src/pages/cloud/CloudPros.tsx | 2 +- src/pages/network/NetworkUsecases.tsx | 2 +- src/pages/nodes/NodeBenefits.tsx | 4 +++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/pages/agents/AgentPro.tsx b/src/pages/agents/AgentPro.tsx index 4a6c605..2a34fca 100644 --- a/src/pages/agents/AgentPro.tsx +++ b/src/pages/agents/AgentPro.tsx @@ -6,7 +6,7 @@ const highlights = [ label: "Local Execution", title: "Agents run entirely inside your environment.", description: - "Models, logic, and memory stay within your own trusted hardware—never behind third-party APIs.", + "Models, logic, and memory stay within your own trusted hardware, never behind third-party APIs.", }, { label: "Mesh Connectivity", @@ -18,7 +18,7 @@ const highlights = [ label: "Private Data Access", title: "They use your data without sending it elsewhere.", description: - "Your datasets, embeddings, and context never leave your boundaries—processing stays local.", + "Your datasets, embeddings, and context never leave your boundaries. Processing stays local.", }, { label: "Portability", diff --git a/src/pages/cloud/CloudPros.tsx b/src/pages/cloud/CloudPros.tsx index 9079f2d..d0ebfea 100644 --- a/src/pages/cloud/CloudPros.tsx +++ b/src/pages/cloud/CloudPros.tsx @@ -48,7 +48,7 @@ export function CloudPros() {

Most AI systems run on centralized clouds, where the models, data, and logic operate behind third-party APIs. Mycelium Agents flip that - architecture—running entirely inside your environment so control, + architecture, running entirely inside your environment so control, privacy, and autonomy stay with you.

diff --git a/src/pages/network/NetworkUsecases.tsx b/src/pages/network/NetworkUsecases.tsx index 12f0c80..7064d3c 100644 --- a/src/pages/network/NetworkUsecases.tsx +++ b/src/pages/network/NetworkUsecases.tsx @@ -27,7 +27,7 @@ const networkUseCases = [ { title: "Service-to-Service Networking Across Environments", description: - "Connect apps running across home labs, cloud regions, edge nodes, and datacenters — all on one address space.", + "Connect apps running across home labs, cloud regions, edge nodes, and datacenters all on one address space.", ideal: "Ideal for: dev teams, distributed apps, container + K3s workloads", icon: GlobeAltIcon, }, diff --git a/src/pages/nodes/NodeBenefits.tsx b/src/pages/nodes/NodeBenefits.tsx index fc2ae1c..565256a 100644 --- a/src/pages/nodes/NodeBenefits.tsx +++ b/src/pages/nodes/NodeBenefits.tsx @@ -108,8 +108,10 @@ export function NodeBenefits() { ))} - +{/* Bottom spacing line */}
+
+ ); }