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
This commit is contained in:
2025-11-17 15:56:40 +01:00
parent e46848b98d
commit 618e1b0f5b
4 changed files with 7 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ const highlights = [
label: "Local Execution", label: "Local Execution",
title: "Agents run entirely inside your environment.", title: "Agents run entirely inside your environment.",
description: description:
"Models, logic, and memory stay within your own trusted hardwarenever behind third-party APIs.", "Models, logic, and memory stay within your own trusted hardware, never behind third-party APIs.",
}, },
{ {
label: "Mesh Connectivity", label: "Mesh Connectivity",
@@ -18,7 +18,7 @@ const highlights = [
label: "Private Data Access", label: "Private Data Access",
title: "They use your data without sending it elsewhere.", title: "They use your data without sending it elsewhere.",
description: 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", label: "Portability",

View File

@@ -48,7 +48,7 @@ export function CloudPros() {
<P className="mt-4 text-gray-700 leading-relaxed"> <P className="mt-4 text-gray-700 leading-relaxed">
Most AI systems run on centralized clouds, where the models, data, and Most AI systems run on centralized clouds, where the models, data, and
logic operate behind third-party APIs. Mycelium Agents flip that logic operate behind third-party APIs. Mycelium Agents flip that
architecturerunning entirely inside your environment so control, architecture, running entirely inside your environment so control,
privacy, and autonomy stay with you. privacy, and autonomy stay with you.
</P> </P>
</div> </div>

View File

@@ -27,7 +27,7 @@ const networkUseCases = [
{ {
title: "Service-to-Service Networking Across Environments", title: "Service-to-Service Networking Across Environments",
description: 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", ideal: "Ideal for: dev teams, distributed apps, container + K3s workloads",
icon: GlobeAltIcon, icon: GlobeAltIcon,
}, },

View File

@@ -108,8 +108,10 @@ export function NodeBenefits() {
))} ))}
</motion.ul> </motion.ul>
</div> </div>
{/* Bottom spacing line */}
<div className="w-full border-b border-gray-800 bg-[#121212]" /> <div className="w-full border-b border-gray-800 bg-[#121212]" />
<div className="max-w-7xl mx-auto py-6 border border-t-0 border-b-0 border-gray-800" />
</section> </section>
); );
} }