www_projectinca_archive/src/pages/features.astro

204 lines
6.5 KiB
Plaintext
Raw Normal View History

2024-06-04 12:03:43 +00:00
---
import Features2 from '~/components/widgets/Features2.astro';
import Features3 from '~/components/widgets/Features3.astro';
import Hero from '~/components/widgets/Hero.astro';
import Stats from '~/components/widgets/Stats.astro';
import Steps2 from '~/components/widgets/Steps2.astro';
import Layout from '~/layouts/PageLayout.astro';
2024-06-05 00:19:55 +00:00
import Steps from '~/components/widgets/Steps.astro';
import Content from '~/components/widgets/Content.astro';
import CallToAction from '~/components/widgets/CallToAction.astro';
2024-06-04 12:03:43 +00:00
const metadata = {
2024-06-05 00:19:55 +00:00
title: 'Features',
2024-06-04 12:03:43 +00:00
};
---
<Layout metadata={metadata}>
<!-- Hero Widget ******************* -->
<Hero
2024-06-05 00:19:55 +00:00
tagline="Features"
2024-06-04 12:03:43 +00:00
>
<Fragment slot="title">
2024-06-05 00:19:55 +00:00
Our technology enables <br>a planetary-scale grid of interconnected nodes
<span class="text-accent dark:text-white highlight"> </span>
2024-06-04 12:03:43 +00:00
</Fragment>
<Fragment slot="subtitle">
2024-06-05 00:19:55 +00:00
<br><br>Over years of research and development, we've built a worldwide peer-to-peer and energy-efficient network of interconnected nodes with endless possibilities. <br><br>Mycelium Network allows for the shorter distance to be made at all time, Zero-OS allows for self-healing and autonomous cloud services, Quantum Safe File System ensures data is never lost and our blockchain TFChain makes sure transactions are fair and objective.<br> <br>Our stack is complete and we can be the foundational layer for most projects out there. <br><br> Let's build altogether. Let's together create the Unbreakable Internet.
2024-06-04 12:03:43 +00:00
</Fragment>
</Hero>
2024-06-05 00:19:55 +00:00
<!-- Content Widget **************** -->
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Content
isReversed
id="about"
2024-06-04 12:03:43 +00:00
columns={3}
items={[
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Self-Healing',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Autonomous',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Linux Kernel',
2024-06-04 12:03:43 +00:00
},
]}
2024-06-05 00:19:55 +00:00
image={{
src: '~/assets/images/partners.png',
alt: 'Colorful Image',
loading: 'eager',
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Zero-OS</h2>
<p>
Zero-OS is a stateless and lightweight operating system designed to host anything that runs on Linux, in a decentralized way. Once installed, Zero-OS locks the hardware and dedicates its capacity to the grid via the ThreeFold blockchain, TFChain. Zero-OS requires no maintenant or administration and is thus accessible to all.
</p>
</Fragment>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content>
<!-- Content Widget **************** -->
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Content
id="about"
2024-06-04 12:03:43 +00:00
columns={3}
items={[
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'End-to-end Encrypted',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Shortest Path Route',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Decentralized Resiliency',
2024-06-04 12:03:43 +00:00
},
]}
image={{
2024-06-05 00:19:55 +00:00
src: '~/assets/images/p2ppromotion.png',
2024-06-04 12:03:43 +00:00
alt: 'Colorful Image',
2024-06-05 00:19:55 +00:00
loading: 'eager',
2024-06-04 12:03:43 +00:00
}}
2024-06-05 00:19:55 +00:00
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Mycelium</h2>
<p>
Mycelium is the future of secure, efficient, and scalable networking. Mycelium connects nodes and enables efficient data transfer and communication without relying on a single central authority.
</p>
<p>
With Mycelium, data travels along the most efficient paths, reducing latency and optimizing resource utilization.
</Fragment>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Content
isReversed
id="about"
columns={3}
2024-06-04 12:03:43 +00:00
items={[
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Ultra-Reliable + Scalable',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Hacker-Proof + Safe',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Low Overhead + Self-Healing',
2024-06-04 12:03:43 +00:00
},
]}
2024-06-05 00:19:55 +00:00
image={{
src: '~/assets/images/partners.png',
alt: 'Colorful Image',
loading: 'eager',
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Quantum-Safe File System</h2>
<p>
Quantum computers are theoretically capable of doing huge calculations in a short period of time and represent a great potential threat to future online safety. ThreeFold solves this future problem before it even becomes a reality. Our operating system can compress, encrypt, and disperse data across the grid ensuring redundancy.
</p>
</Fragment>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<!-- Content Widget **************** -->
<Content
id="about"
columns={3}
2024-06-04 12:03:43 +00:00
items={[
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Distributed',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Public Ledger',
2024-06-04 12:03:43 +00:00
},
{
2024-06-05 00:19:55 +00:00
icon: 'tabler:check',
description: 'Permissionless',
2024-06-04 12:03:43 +00:00
},
]}
2024-06-05 00:19:55 +00:00
image={{
src: '~/assets/images/p2ppromotion.png',
alt: 'Colorful Image',
loading: 'eager',
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">TFChain</h2>
<p>
TFChain is a blockchain developed by the ThreeFold Foundation that supports smart contracts and serves as the underlying technology and database for managing the grid. Built on Parity Substrate, it is responsible for storing information related to the grid, including nodes and cloud service provider details, digital twin registry, and more.
</p>
</Fragment>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content>
2024-06-04 12:03:43 +00:00
2024-06-05 00:19:55 +00:00
<!-- CallToAction Widget *********** -->
<CallToAction
actions={[
2024-06-04 12:03:43 +00:00
{
2024-06-05 00:19:55 +00:00
variant: 'primary',
target: '_blank',
text: 'Get INCA Nodes',
href: 'https://threefold.io',
icon: 'tabler:brand-minecraft',
2024-06-04 12:03:43 +00:00
},
]}
2024-06-05 00:19:55 +00:00
>
<Fragment slot="title">Expand the Grid with Us</Fragment>
<Fragment slot="subtitle">
We have the technology for a planetary-scale alternative<br> to mainstream cloud and current monopolistic markets.<br><br>The Project INCA is the Unbreakable Internet.
</Fragment>
</CallToAction>
2024-06-04 12:03:43 +00:00
</Layout>