feat: rename ThreeFold to Mycelium in copyright, docs, specs, and UI across codebase

This commit is contained in:
mik-tf
2025-09-08 13:45:02 -04:00
parent 8d66810688
commit c054ceb24d
22 changed files with 146 additions and 146 deletions

View File

@@ -1,13 +1,13 @@
// Demo Workflow JavaScript
// This file provides a comprehensive demo of the ThreeFold Dashboard functionality
// This file provides a comprehensive demo of the Mycelium Dashboard functionality
class DemoWorkflow {
constructor() {
this.currentStep = 0;
this.steps = [
{
title: "Welcome to ThreeFold Dashboard Demo",
description: "This demo will showcase the complete interactive functionality of the ThreeFold ecosystem.",
title: "Welcome to Mycelium Dashboard Demo",
description: "This demo will showcase the complete interactive functionality of the Mycelium ecosystem.",
action: () => this.showWelcome()
},
{
@@ -42,7 +42,7 @@ class DemoWorkflow {
},
{
title: "Demo Complete",
description: "You've seen the complete ThreeFold ecosystem in action!",
description: "You've seen the complete Mycelium ecosystem in action!",
action: () => this.showCompletion()
}
];
@@ -75,14 +75,14 @@ class DemoWorkflow {
demoPanel.innerHTML = `
<div class="demo-header">
<h5 class="mb-2">🚀 ThreeFold Demo</h5>
<h5 class="mb-2">🚀 Mycelium Demo</h5>
<div class="progress mb-3" style="height: 6px;">
<div class="progress-bar bg-primary" id="demo-progress" role="progressbar" style="width: 0%"></div>
</div>
</div>
<div class="demo-content">
<h6 id="demo-title">Welcome to ThreeFold Dashboard Demo</h6>
<p id="demo-description" class="text-muted small">This demo will showcase the complete interactive functionality of the ThreeFold ecosystem.</p>
<h6 id="demo-title">Welcome to Mycelium Dashboard Demo</h6>
<p id="demo-description" class="text-muted small">This demo will showcase the complete interactive functionality of the Mycelium ecosystem.</p>
</div>
<div class="demo-controls mt-3">
<button class="btn btn-primary btn-sm me-2" id="demo-next">Start Demo</button>
@@ -139,7 +139,7 @@ class DemoWorkflow {
}
showWelcome() {
showNotification('Welcome to the ThreeFold Dashboard Demo! 🎉', 'info');
showNotification('Welcome to the Mycelium Dashboard Demo! 🎉', 'info');
}
demoAppRegistration() {
@@ -167,7 +167,7 @@ class DemoWorkflow {
fillAppRegistrationForm() {
const formData = {
appName: 'Demo Secure Chat App',
appDesc: 'A decentralized, end-to-end encrypted chat application built for the ThreeFold Grid',
appDesc: 'A decentralized, end-to-end encrypted chat application built for the Mycelium Grid',
appCategory: 'communication',
appType: 'container',
appRepo: 'https://github.com/demo/secure-chat',
@@ -219,8 +219,8 @@ class DemoWorkflow {
fillServiceCreationForm() {
const formData = {
serviceName: 'Demo ThreeFold Migration Service',
serviceDesc: 'Professional migration service to help businesses move their workloads to the ThreeFold Grid with zero downtime',
serviceName: 'Demo Mycelium Migration Service',
serviceDesc: 'Professional migration service to help businesses move their workloads to the Mycelium Grid with zero downtime',
serviceCategory: 'migration',
serviceDelivery: 'hybrid',
pricingType: 'hourly',
@@ -228,7 +228,7 @@ class DemoWorkflow {
serviceExperience: 'expert',
availableHours: '30',
responseTime: '4',
serviceSkills: 'Docker, Kubernetes, ThreeFold Grid, Cloud Migration, DevOps'
serviceSkills: 'Docker, Kubernetes, Mycelium Grid, Cloud Migration, DevOps'
};
Object.entries(formData).forEach(([key, value]) => {
@@ -307,7 +307,7 @@ class DemoWorkflow {
}
showCompletion() {
showNotification('🎉 Demo completed! You\'ve experienced the full ThreeFold ecosystem.', 'success');
showNotification('🎉 Demo completed! You\'ve experienced the full Mycelium ecosystem.', 'success');
setTimeout(() => {
this.closeDemo();