feat: update UI text and navigation from 3Nodes to Mycelium Nodes

This commit is contained in:
mik-tf
2025-09-06 22:27:00 -04:00
parent 0b812768ee
commit 67577df3d0
7 changed files with 22 additions and 22 deletions

View File

@@ -21,7 +21,7 @@
<div class="col-md-3">
<div class="card text-white bg-success mb-3">
<div class="card-body">
<h5 class="card-title">3Nodes</h5>
<h5 class="card-title">Mycelium Nodes</h5>
<p class="card-text">120+ certified nodes</p>
<a href="/marketplace/mycelium_nodes" class="text-white">Browse Mycelium Nodes →</a>
</div>

View File

@@ -36,7 +36,7 @@
<li class="nav-item">
<a class="nav-link {% if active_section == 'three_nodes' %}active{% endif %}" href="/marketplace/mycelium_nodes">
<i class="bi bi-hdd-rack me-1"></i>
3Nodes
Mycelium Nodes
</a>
</li>
<li class="nav-item">

View File

@@ -1,21 +1,21 @@
{% extends "marketplace/layout.html" %}
{% block title %}Project Mycelium - 3Nodes Hardware{% endblock %}
{% block title %}Project Mycelium - Mycelium Nodes Hardware{% endblock %}
{% block marketplace_content %}
<div class="my-4">
<h1>3Nodes Hardware</h1>
<h1>Mycelium Nodes Hardware</h1>
<p class="lead">Discover certified hardware nodes that power the ThreeFold Grid infrastructure.</p>
<!-- 3Nodes Introduction -->
<!-- Mycelium Nodes Introduction -->
<div class="alert alert-info mb-4">
<div class="d-flex">
<div class="me-3">
<i class="bi bi-server fs-3"></i>
</div>
<div>
<h5 class="alert-heading">What are 3Nodes?</h5>
<p>3Nodes are the physical hardware units that make up the ThreeFold Grid. These certified servers provide compute, storage, and network capacity to the decentralized internet infrastructure.</p>
<h5 class="alert-heading">What are Mycelium Nodes?</h5>
<p>Mycelium Nodes are the physical hardware units that make up the ThreeFold Grid. These certified servers provide compute, storage, and network capacity to the decentralized internet infrastructure.</p>
<hr>
<p class="mb-0">By purchasing a 3Node, you become a farmer in the ThreeFold ecosystem, earning TFT rewards while contributing to the decentralized internet.</p>
</div>
@@ -25,7 +25,7 @@
<!-- Filter and Search Section -->
<div class="card mb-4">
<div class="card-body">
<h5 class="card-title">Filter 3Nodes</h5>
<h5 class="card-title">Filter Mycelium Nodes</h5>
<form class="row g-3" method="GET">
<div class="col-md-3">
<label for="locationFilter" class="form-label">Location</label>
@@ -70,7 +70,7 @@
</div>
</div>
<!-- 3Nodes Grid -->
<!-- Mycelium Nodes Grid -->
<div class="row">
{% if hardware_products and hardware_products | length > 0 %}
{% for product_data in hardware_products %}
@@ -206,7 +206,7 @@
<div class="col-12">
<div class="text-center py-5">
<i class="bi bi-server display-1 text-muted"></i>
<h4 class="mt-3">No 3Nodes Available</h4>
<h4 class="mt-3">No Mycelium Nodes Available</h4>
<p class="text-muted">Check back later for new hardware offerings.</p>
</div>
</div>
@@ -293,7 +293,7 @@
<!-- Results Info -->
<div class="text-center text-muted mt-2">
Showing page {{ pagination.current_page + 1 }} of {{ pagination.total_pages }}
({{ pagination.total_count }} total 3Nodes)
({{ pagination.total_count }} total Mycelium Nodes)
</div>
{% endif %}