...
This commit is contained in:
parent
8095f7bc61
commit
2993e52f50
@ -16,9 +16,9 @@
|
|||||||
<div class="relative pl-9">
|
<div class="relative pl-9">
|
||||||
<dt class="inline font-semibold text-black">
|
<dt class="inline font-semibold text-black">
|
||||||
|
|
||||||
✓ QSFS Storage Functionality
|
✓ Quantum Safe Storage Functionality
|
||||||
</dt>
|
</dt>
|
||||||
<dd class="font-light">Mycelium’s QSFS storage enables flexible, scalable, and efficient data distribution across a decentralized network, ensuring redundancy and security.</dd>
|
<dd class="font-light">Mycelium’s quantum safe storage enables flexible, scalable, and efficient data distribution across a decentralized network, ensuring redundancy and security.</dd>
|
||||||
</div>
|
</div>
|
||||||
<div class="relative pl-9">
|
<div class="relative pl-9">
|
||||||
<dt class="inline font-semibold text-black">
|
<dt class="inline font-semibold text-black">
|
||||||
@ -37,9 +37,9 @@
|
|||||||
<div class="relative pl-9">
|
<div class="relative pl-9">
|
||||||
<dt class="inline font-semibold text-black">
|
<dt class="inline font-semibold text-black">
|
||||||
|
|
||||||
✓ Ability to Store Data on Behalf of Other Users
|
✓ Integrated Name Services (DNS)
|
||||||
</dt>
|
</dt>
|
||||||
<dd class="font-light">Mycelium enables users to securely store and manage data for others, facilitating shared access while maintaining ownership and permissions.</dd>
|
<dd class="font-light">The Integrated DNS system efficiently finds the shortest path between users and websites, automatically balancing loads and identifying alternative routes in case of internet issues.</dd>
|
||||||
</div>
|
</div>
|
||||||
<div class="relative pl-9">
|
<div class="relative pl-9">
|
||||||
<dt class="inline font-semibold text-black">
|
<dt class="inline font-semibold text-black">
|
||||||
|
@ -52,6 +52,37 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div x-data="{ expanded: false }" class="py-2">
|
||||||
|
<h2>
|
||||||
|
<button
|
||||||
|
id="faqs-title-01"
|
||||||
|
type="button"
|
||||||
|
class="flex items-center justify-between w-full text-left font-semibold py-2 border-none"
|
||||||
|
@click="expanded = !expanded"
|
||||||
|
:aria-expanded="expanded"
|
||||||
|
aria-controls="faqs-text-01"
|
||||||
|
>
|
||||||
|
<span class="pl-4" style="color: #000;">Is mycelium ready to scale to the world?</span>
|
||||||
|
<svg class="fill-black shrink-0 ml-8" width="16" height="16" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect y="7" width="16" height="2" rx="1" class="transform origin-center transition duration-200 ease-out" :class="{'!rotate-180': expanded}" />
|
||||||
|
<rect y="7" width="16" height="2" rx="1" class="transform origin-center rotate-90 transition duration-200 ease-out" :class="{'!rotate-180': expanded}" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="faqs-text-01"
|
||||||
|
role="region"
|
||||||
|
aria-labelledby="faqs-title-01"
|
||||||
|
class="grid text-sm text-black overflow-hidden transition-all duration-300 ease-in-out"
|
||||||
|
:class="expanded ? 'grid-rows-[1fr] opacity-100' : 'grid-rows-[0fr] opacity-0'"
|
||||||
|
>
|
||||||
|
<div class="overflow-hidden">
|
||||||
|
<p class="pb-3 text-black text-base font-light">
|
||||||
|
No, Mycelium is not yet fully scalable to a global level. Currently, each network can support around 100,000 users, but multiple networks can be deployed to expand capacity. We anticipate resolving these scalability challenges by 2025.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- Accordion item -->
|
<!-- Accordion item -->
|
||||||
<div x-data="{ expanded: false }" class="py-2">
|
<div x-data="{ expanded: false }" class="py-2">
|
||||||
<h2>
|
<h2>
|
||||||
|
Loading…
Reference in New Issue
Block a user