forked from emre/www_projectmycelium_com
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:
@@ -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",
|
||||
|
||||
@@ -48,7 +48,7 @@ export function CloudPros() {
|
||||
<P className="mt-4 text-gray-700 leading-relaxed">
|
||||
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.
|
||||
</P>
|
||||
</div>
|
||||
|
||||
@@ -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,
|
||||
},
|
||||
|
||||
@@ -108,8 +108,10 @@ export function NodeBenefits() {
|
||||
))}
|
||||
</motion.ul>
|
||||
</div>
|
||||
|
||||
{/* Bottom spacing line */}
|
||||
<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>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user