Merge pull request 'development to main' (#33) from development into main

Reviewed-on: #33
This commit is contained in:
mik-tf 2024-06-06 20:21:32 +00:00
commit df9d3ee088
24 changed files with 464 additions and 187 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 914 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

View File

@ -5,5 +5,5 @@ import { SITE } from 'astrowind:config';
<span
class="self-center ml-2 rtl:ml-0 rtl:mr-2 text-2xl md:text-xl font-bold text-gray-900 whitespace-nowrap dark:text-white"
>
🌎 {SITE?.name}
{SITE?.name}
</span>

View File

@ -6,6 +6,7 @@ import type { CallToAction } from '~/types';
export interface Props {
id?: string;
title?: string;
title2?: string;
subtitle?: string;
tagline?: string;
content?: string;
@ -16,6 +17,7 @@ export interface Props {
const {
id,
title = await Astro.slots.render('title'),
title2 = await Astro.slots.render('title2'),
subtitle = await Astro.slots.render('subtitle'),
tagline,
content = await Astro.slots.render('content'),
@ -46,6 +48,14 @@ const {
/>
)
}
{
title2 && (
<h3
class="text-5xl md:text-4xl font-bold leading-tighter tracking-tighter mb-4 font-heading dark:text-gray-200"
set:html={title2}
/>
)
}
<div class="max-w-3xl mx-auto">
{subtitle && <p class="text-xl text-muted mb-6 dark:text-slate-300" set:html={subtitle} />}
{

View File

@ -5,7 +5,7 @@ import { Icon } from 'astro-icon/components';
<section class="bg-blue-50 dark:bg-slate-800 not-prose">
<div class="max-w-6xl mx-auto px-4 sm:px-6 py-4 text-md text-center font-medium">
<span class="font-bold">
<Icon name="tabler:info-square" class="w-5 h-5 inline-block align-text-bottom" /> Project Internet Capacity:</span
> The Internet as intended.
<Icon name="tabler:info-square" class="w-5 h-5 inline-block align-text-bottom" /> INCA:</span
> The Internet as intended
</div>
</section>

View File

@ -16,7 +16,7 @@ metadata:
index: true
follow: true
openGraph:
site_name: Project INCA
site_name: Project Internet Capacity
images:
- url: '~/assets/images/inca_background.png'
width: 1200

View File

@ -7,8 +7,8 @@ export const headerData = {
href: getPermalink('/technology'),
},
{
text: 'Nodes',
href: getPermalink('/nodes'),
text: 'Farming',
href: getPermalink('/farming'),
},
{
text: 'About',
@ -29,22 +29,24 @@ export const footerData = {
links: [
{ text: 'Zero-OS', href: 'technology#zeroos' },
{ text: 'Mycelium Network', href: 'technology#mycelium' },
{ text: 'Quantum Safe File Storage', href: 'technology#qsfs' },
{ text: 'Quantum-Safe Storage', href: 'technology#qsfs' },
{ text: 'TFChain', href: 'technology#tfchain' },
],
},
{
title: 'Nodes',
title: 'Farming',
links: [
{ text: 'Silver', href: '/nodes' },
{ text: 'Platinum', href: '/nodes' },
{ text: 'AI', href: '/nodes' },
{ text: 'Nodes', href: '/farming#incanodes' },
{ text: 'Features', href: '/farming#nodestech' },
{ text: 'FAQs', href: '/farming#farmingfaq' },
],
},
{
title: 'About',
links: [
{ text: 'The Project', href: '/about' },
{ text: 'Values', href: '/about#values' },
{ text: 'Mission', href: '/about#mission' },
{ text: 'ThreeFold', href: 'https://threefold.io' },
],
},

View File

@ -17,6 +17,7 @@ const metadata = {
<!-- Hero Widget ******************* -->
<Hero
id="about"
tagline="About"
image={{
src: '~/assets/images/threefold_cooperative.png',
@ -24,19 +25,18 @@ const metadata = {
}}
>
<Fragment slot="title">
Project Internet Capacity <br>is the culmulation of years <br>of work by
<span class="text-accent dark:text-white highlight"> ThreeFold</span>
Project Internet Capacity <br>is the culmulation of years <br>of work by ThreeFold
</Fragment>
<Fragment slot="subtitle">
Project Internet Capacity is the fourth generation of the ThreeFold Grid. Our technology is rock solid and has been running in production mode for years now on the main network. We wouldn't be here without our amazing community and its members who keep on evolving with us. This project will always have planet and people first in mind.
INCA is the fourth generation of the ThreeFold Grid. Our technology is rock solid and has been running in production mode for years now on the main network. We wouldn't be here without our amazing community and its members who keep on evolving with us. This project will always have planet and people first in mind.
</Fragment>
</Hero>
<!-- Steps Widget ****************** -->
<Steps
id="resume"
id="values"
title="Our Values"
items={[
{
@ -106,7 +106,7 @@ const metadata = {
<!-- Content Widget **************** -->
<Content
id="about"
id="mission"
columns={3}
items={[
{
@ -144,7 +144,7 @@ const metadata = {
<Content
isReversed
id="about"
id="vision"
columns={3}
items={[
{
@ -187,8 +187,9 @@ const metadata = {
<!-- Steps2 Widget ****************** -->
<Steps2
id="achievements"
title="Achievements"
subtitle="Project Internet Capacity is the continuation of the ThreeFold Grid. We are now entering our 4th phase and we are ready for a major expansion. Build with us the largest decentralized cloud on the planet."
subtitle="INCA is the continuation of the ThreeFold Grid. We are now entering our 4th phase and we are ready for a major expansion. Build with us the largest decentralized cloud on the planet."
isReversed={true}
callToAction={{
text: 'Explore ThreeFold',

View File

@ -0,0 +1,44 @@
---
import Content from '~/components/widgets/Content.astro';
---
<Content
id="autonomouscloudengine"
columns={3}
items={[
{
icon: 'tabler:check',
description: 'Accessible',
},
{
icon: 'tabler:check',
description: 'Production-Ready',
},
{
icon: 'tabler:check',
description: 'Future-Proof',
},
]}
image={{
src: '~/assets/images/hardware_computer.jpg',
alt: 'Colorful Image',
loading: 'eager',
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Autonomous Cloud Engine</h2>
<p>
Our cloud engine is autonomous and self-healing, enabling anyone to provide Internet capacity to the world. Our technology offers quantum-safe storage & network and is accessible to everyone.
<br><br>We are a community-driven project and we firmly believe that, together, we can create a new Internet where users are the sole owners of their data and where everyone can thrive on the cloud.
<br><br>Gone are the days where you needed to be a cloud expert with high capital to get into the cloud market. You can now become a cloud service provider and participate in the decentralization of the cloud...<br> one node at a time!
</p>
</Fragment>
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Content>

48
src/pages/ecosystem.astro Normal file
View File

@ -0,0 +1,48 @@
---
import Layout from '~/layouts/PageLayout.astro';
import Hero from '~/components/widgets/Hero.astro';
import INCAStats from './incastats.astro'
import Partners from './partners.astro'
import Purpose from './purpose.astro'
const metadata = {
title: 'INCA — Decentralized Autonomous Cloud',
ignoreTitleTemplate: true,
};
---
<Layout metadata={metadata}>
<!-- Hero Widget ******************* -->
<Hero
actions={[
{
variant: 'primary',
text: 'Get INCA Nodes',
href: 'https://threefold.io',
target: '_blank',
icon: 'tabler:brand-minecraft',
},
{ text: 'Learn more', href: '#partners' },
]}
>
<Fragment slot="title">
<span class="text-accent dark:text-white highlight"> Project INCA<br></span> Ecosystem<br><br>
</Fragment>
<Fragment slot="subtitle">
<span class="hidden sm:inline">
<span class="font-semibold">Project INCA</span> is proud of its many partnerships<br> providing a thriving ecosystem of like-minded individuals <br>and innovative products and services<br></span
>
</Fragment>
</Hero>
<Partners/>
<Purpose/>
<INCAStats/>

View File

@ -6,9 +6,12 @@ import FAQs from '~/components/widgets/FAQs.astro';
import Steps from '~/components/widgets/Steps.astro';
import Features3 from '~/components/widgets/Features3.astro';
import CallToAction from '~/components/widgets/CallToAction.astro';
import Hero from '~/components/widgets/Hero.astro';
import InternetCapacity from './internetcapacity.astro';
import NodeSteps from './steps_node_buy.astro'
const metadata = {
title: 'Nodes',
title: 'Farming',
};
---
@ -16,16 +19,16 @@ const metadata = {
<!-- HeroText Widget ******************* -->
<HeroText
tagline="Nodes"
title="Building the Unbreakable Internet<br> One Node at a Time"
subtitle="Choose the perfect node for your goals."
tagline="Farming"
title="Become <br>an Internet Capacity <br>Provider"
/>
<!-- Pricing Widget ******************* -->
<Prices
id="incanodes"
title="Internet Capacity Nodes"
subtitle="The Unbreakable Internet"
subtitle="A Cloud Engine for the New Internet"
prices={[
{
title: 'silver',
@ -33,9 +36,6 @@ const metadata = {
price: 499,
period: 'per node',
items: [
{
description: 'Suited for Content Delivery + Name',
},
{
description: '32 GB of Memory',
},
@ -45,6 +45,9 @@ const metadata = {
{
description: '8 Logical CPU Cores',
},
{
description: '2,000-6,000 INCA reward per month.',
}
],
callToAction: {
target: '_blank',
@ -58,9 +61,6 @@ const metadata = {
price: 1999,
period: 'per node',
items: [
{
description: 'Suited for Hero AI assistant workloads',
},
{
description: '64 GB of Memory',
},
@ -70,6 +70,9 @@ const metadata = {
{
description: '16 Logical CPU Cores',
},
{
description: '4,000-12,000 INCA reward per month.',
}
],
callToAction: {
target: '_blank',
@ -85,9 +88,6 @@ const metadata = {
price: 3999,
period: 'per node',
items: [
{
description: 'Suited for state-of-the-art AI with ease',
},
{
description: '64 GB of Memory',
},
@ -97,6 +97,9 @@ const metadata = {
{
description: 'RTX 4900 GPU',
},
{
description: '10,000-30,000 INCA reward per month.',
}
],
callToAction: {
target: '_blank',
@ -105,11 +108,16 @@ const metadata = {
},
},
]}
/>
<!-- Features3 Widget ************** -->
<Features3
id="nodestech"
title="Nodes Leading at the Edge"
subtitle="Discover how our nodes provide a groundbreaking, reliable and robust technology"
columns={2}
@ -151,49 +159,39 @@ const metadata = {
<!-- Steps Widget ****************** -->
<Steps
title="Your Cloud Adventure <br>Begins Now"
tagline="nothing beats simple"
isReversed={true}
title="Get a node <br> up and running<br>in no time to earn rewards..."
items={[
{
title: 'Explore nodes',
icon: 'tabler:number-1',
title: 'Step 1: <span class="font-medium">Order a node</span>',
description:
"We propose different nodes to suit your specific situation. From basic generic cloud services to advanced AI workloads, it's all possible on the grid.",
icon: 'tabler:package',
},
{
title: 'Select a node model',
icon: 'tabler:number-2',
title: 'Step 2: <span class="font-medium">Connect the node</em>',
description:
"Setting a node is a no brainer: plug the node to an electric outlet and connect it to the Internet via a cable. That\'s it! You\'re hosting the grid!",
icon: 'tabler:plug-connected',
},
{
title: 'Visit the store',
icon: 'tabler:number-3',
title: 'Step 3: <span class="font-medium">Earn rewards</span>',
description:
'The node is self-healing and autonomous. It\'s cruising speed from here on out: users can deploy on your node and you receive rewards.',
icon: 'tabler:award',
},
{
title: 'Confirm your order',
icon: 'tabler:number-4',
},
{
title: 'Receive the node',
icon: 'tabler:number-5',
},
{
title: 'Plug in electricity and Internet',
icon: 'tabler:number-6',
},
{
title: 'Earn rewards for hosting',
icon: 'tabler:number-7',
title: 'You\'re a cloud solution provider!',
icon: 'tabler:rosette-discount-check',
},
]}
image={{
src: '~/assets/images/trail.jpg',
alt: 'Steps image',
}}
image={{ src: '~/assets/images/currency_of_future.png', alt: '' }},
/>
<!-- FAQs Widget ******************* -->
<FAQs
title="Nodes FAQs"
id="farmingfaq"
title="Farming FAQs"
subtitle="Choosing the right node for you is a crucial step, <br>and we're here to answer your questions. "
columns={1}
items={[
@ -228,13 +226,13 @@ const metadata = {
<!-- CallToAction Widget *********** -->
<CallToAction
title="Ready to Expand the Internet Capacity? "
subtitle="Join our community of cloud service providers <br>who have transformed the Internet landscape."
title="Do you want to build <br>your own INCA nodes?"
subtitle="All our work is open-source and you can build your own nodes!"
actions={[
{
variant: 'primary',
text: 'Get INCA Nodes',
href: 'https://threefold.io',
text: 'Build INCA Nodes',
href: 'https://manual.grid.tf/documentation/farmers/3node_building/3node_building.html',
},
]}
/>

14
src/pages/incastats.astro Normal file
View File

@ -0,0 +1,14 @@
---
import Stats from '~/components/widgets/Stats.astro';
---
<Stats
stats={[
{ title: 'Capacity', amount: '32.74 PB' },
{ title: 'Nodes', amount: '2569' },
{ title: 'Countries', amount: '61' },
{ title: 'Cores', amount: '63,968' },
]}
/>

View File

@ -3,25 +3,30 @@ import Layout from '~/layouts/PageLayout.astro';
import { getPermalink } from '~/utils/permalinks';
import Hero from '~/components/widgets/Hero.astro';
import Hero2 from '~/components/widgets/Hero2.astro';
import Note from '~/components/widgets/Note.astro';
import Features from '~/components/widgets/Features.astro';
import Features2 from '~/components/widgets/Features2.astro';
import Features3 from '~/components/widgets/Features3.astro';
import Steps from '~/components/widgets/Steps.astro';
import Content from '~/components/widgets/Content.astro';
import Stats from '~/components/widgets/Stats.astro';
import Steps from '~/components/widgets/Steps.astro';
import BlogLatestPosts from '~/components/widgets/BlogLatestPosts.astro';
import FAQs from '~/components/widgets/FAQs.astro';
import Stats from '~/components/widgets/Stats.astro';
import CallToAction from '~/components/widgets/CallToAction.astro';
import Partners from './partners.astro'
import Purpose from './purpose.astro'
import Inca from './internetcapacity.astro'
import INCAStats from './incastats.astro'
const metadata = {
title: 'Project Internet Capacity — Decentralized Autonomous Cloud',
title: 'INCA — Decentralized Autonomous Cloud',
ignoreTitleTemplate: true,
};
---
<Layout metadata={metadata}>
<!-- Hero Widget ******************* -->
<Hero
@ -33,13 +38,13 @@ const metadata = {
target: '_blank',
icon: 'tabler:brand-minecraft',
},
{ text: 'Learn more', href: '#about' },
{ text: 'Learn more', href: '#technology' },
]}
tagline="Welcome to"
image={{ src: '~/assets/images/background.png', alt: '' }}
>
<Fragment slot="title">
Project <span class="text-accent dark:text-white highlight"> Internet</span> Capacity<br> The Decentralized Autonomous Cloud
Project Internet Capacity<br> The Decentralized Autonomous Cloud
</Fragment>
<Fragment slot="subtitle">
@ -59,9 +64,55 @@ const metadata = {
<Note />
<!-- Features Widget *************** -->
<Features
id="technology"
tagline="Purpose"
title="Layer 0 for DePIN"
subtitle="Project INCA aims to be a Layer 0 for the DePIN community. DePIN projects can run on our decentralized cloud infrastructure, gaining access to a sovereign, decentralized, and reliable storage, network, and compute layer."
items={[
{
title: 'Zero-OS',
description:
'Bare Metal Stateless Operating System: Lightweight, self-healing, adaptable, efficient, and compatible with almost all hardware.',
icon: 'tabler:circle',
},
{
title: 'Web2/Web3 + AI Compatible',
description:
'Compatible with Web2, Web3 and AI: everything can run on our layer 0 infrastructure cloud. If it runs on Linux, it runs on the grid!',
icon: 'tabler:world-www',
},
{
title: 'Mycelium Network',
description:
'End-to-end encrypted shortest path overlay network system, capable of connecting billions of nodes and compatible with the existing Internet.',
icon: 'tabler:mushroom',
},
{
title: 'Quantum Safe Storage',
description:
'Quantum Safe Storage revolutionizes data security: it can store data with up to 10x less overhead and data can never be lost or corrupted. ',
icon: 'tabler:lock-square-rounded',
},
{
title: 'Open-Source and Community-Driven',
description:
"The grid is open-source and community-driven, with the community being an integral part of the ecosystem. Our code will always be publicly available.",
icon: 'tabler:source-code',
},
{
title: 'Scalable Without limit',
description:
'The grid is scalable to the planetary level: from the edge to massive datacenter scale, everyone can be part of the grid.',
icon: 'tabler:infinity',
},
]}
/>
<Content
id="about"
id="pioneers"
image={{
src: '~/assets/images/pioneers2.jpg',
alt: '',
@ -92,7 +143,7 @@ const metadata = {
}}
>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Autonomous Cloud Engine</h2>
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Cloud Engine for a New Internet</h2>
<p>
Our cloud engine is autonomous and self-healing, enabling anyone to provide Internet capacity to the world. Our technology offers quantum-safe storage & network and is accessible to everyone.
@ -109,53 +160,18 @@ const metadata = {
</Content>
<!-- Features Widget *************** -->
<!-- Stats Widget ****************** -->
<Features
id="technology"
tagline="Technology"
title="The Perfect Cloud Partner"
subtitle="Our technology allows computer hardware to act <br>as the layer 0 to many, if not all, projects out there!"
items={[
{
title: 'Zero-OS',
description:
'Our own innovative OS for decentralized efficiency and security. ZOS is lightweight, self-healing, adaptable and built on the Linux kernel.',
icon: 'tabler:circle',
},
{
title: 'Web2/Web3 + AI Compatible',
description:
'Compatible with Web2, Web3 and AI: everything can run on our stack. If it runs on Linux, it runs on the grid! Full versatility to build modern projects with ease.',
icon: 'tabler:world-www',
},
{
title: 'Scalable Without limit',
description:
'The grid is scalable to the planetary level: from the edge to massive datacenter scale. Our technology is designed for home hosters to international enterprises.',
icon: 'tabler:infinity',
},
{
title: 'Quantum Safe File Storage',
description:
'Quantum Safe File Storage revolutionizes data security. Data is stored with 10x less overhead and can never be lost. Be ready for the future with future-proof tech.',
icon: 'tabler:lock-square-rounded',
},
{
title: 'Open-Source and Community-Driven',
description:
"The grid is 100% open-source and community-driven. Our code is available publicly and the community is an integral part of the ecosystem.",
icon: 'tabler:source-code',
},
{
title: 'Mycelium Network',
description:
'The only overlay network in the world which is capable of considering locality: routing decisions are based on proximity between peers. The new P2P standard.',
icon: 'tabler:mushroom',
},
<Stats
stats={[
{ title: 'Capacity', amount: '32.74 PB' },
{ title: 'Nodes', amount: '2569' },
{ title: 'Countries', amount: '61' },
{ title: 'Cores', amount: '63,968' },
]}
/>
<!-- Content Widget **************** -->
<Content
@ -192,36 +208,7 @@ const metadata = {
</Content>
<!-- Steps Widget ****************** -->
<Steps
title="Get a node <br> up and running<br>in no time to earn rewards..."
items={[
{
title: 'Step 1: <span class="font-medium">Order a node</span>',
description:
"We propose different nodes to suit your specific situation. From basic generic cloud services to advanced AI workloads, it's all possible on the grid.",
icon: 'tabler:package',
},
{
title: 'Step 2: <span class="font-medium">Connect the node</em>',
description:
"Setting a node is a no brainer: plug the node to an eletric outlet and connect it to the Internet via a cable. That\'s it! You\'re hosting the grid!",
icon: 'tabler:plug-connected',
},
{
title: 'Step 3: <span class="font-medium">Earn rewards</span>',
description:
'The node is self-healing and autonomous. It\'s cruising speed from here on out: users can deploy on your node and you receive rewards.',
icon: 'tabler:award',
},
{
title: 'You\'re a cloud solution provider!',
icon: 'tabler:rosette-discount-check',
},
]}
image={{ src: '~/assets/images/currency_of_future.png', alt: '' }},
/>
<!-- Features3 Widget ************** -->
@ -230,11 +217,6 @@ const metadata = {
subtitle="We are proud of our partners stemming from all sectors of the industry.<br>Our ecosystem is always expanding and we're always ready for new collaborations!<br> We would like to present some of our amazing partners."
tagline="Partnerships weaving a complete ecosystem"
items={[
{
title: 'Holochain',
description: "Holochain is a more peer-to-peer alternative to the blockchain, giving developers a framework for creating decentralized applications (dApps). Holochains method avoids keeping a global consensus, using an agent system in which each agent keeps a private fork.",
icon: 'tabler:server',
},
{
title: 'Earth Wallet',
description:
@ -252,22 +234,12 @@ const metadata = {
description: 'Vverse is an innovative platform that aims to create a virtual universe where users can explore, interact, and create in immersive virtual environments. It leverages cutting-edge technologies such as virtual reality (VR), augmented reality (AR), and blockchain.',
icon: 'tabler:stack-backward',
},
{
title: 'ThreeFold',
description: "The backbone and first phases of the Project Internet Capacity, ThreeFolds self-healing autonomous system empowers anyone to become a cloud service provider allowing people and organizations to buy, sell and use cloud resources autonomously and securely.",
icon: 'tabler:cloud-computing',
},
{
title: 'Sikana',
description:
'Sikana, a platform dedicated to providing education for all, has delivered over 400 million lessons through free educational videos. This partnership will empower communities worldwide with knowledge and skills, irrespective of their financial or geographical limitations. ',
icon: 'tabler:chalkboard',
},
{
title: 'Helium',
description: 'Helium is a decentralized wireless network that enables low-power, long-range connectivity for Internet of Things (IoT) devices. By leveraging blockchain technology and a network of hotspots, Helium provides a cost-effective and scalable solution for IoT device connectivity.',
icon: 'tabler:wifi',
},
{
title: 'Tanzania Sovereign Internet',
description:
@ -288,6 +260,38 @@ const metadata = {
</Fragment>
</Features2>
<!-- Steps Widget ****************** -->
<Steps
title="Get a node <br> up and running<br>in no time to earn rewards..."
items={[
{
title: 'Step 1: <span class="font-medium">Order a node</span>',
description:
"We propose different nodes to suit your specific situation. From basic generic cloud services to advanced AI workloads, it's all possible on the grid.",
icon: 'tabler:package',
},
{
title: 'Step 2: <span class="font-medium">Connect the node</em>',
description:
"Setting a node is a no brainer: plug the node to an electric outlet and connect it to the Internet via a cable. That\'s it! You\'re hosting the grid!",
icon: 'tabler:plug-connected',
},
{
title: 'Step 3: <span class="font-medium">Earn rewards</span>',
description:
'The node is self-healing and autonomous. It\'s cruising speed from here on out: users can deploy on your node and you receive rewards.',
icon: 'tabler:award',
},
{
title: 'You\'re a cloud solution provider!',
icon: 'tabler:rosette-discount-check',
},
]}
image={{ src: '~/assets/images/currency_of_future.png', alt: '' }},
/>
<!-- HighlightedPosts Widget ******* -->
@ -300,7 +304,7 @@ const metadata = {
classes={{ container: 'max-w-6xl' }}
items={[
{
title: 'Why is the Project Internet Capacity necessary?',
title: 'Why is the INCA necessary?',
description:
"There is a cyber pandemic going on and there is a war for your attention! The cloud and Internet can be what it was always meant to be: for the people and peer-to-peer. The grid offers the possibility for anyone to own their share of the Internet.",
},
@ -332,17 +336,6 @@ const metadata = {
]}
/>
<!-- Stats Widget ****************** -->
<Stats
stats={[
{ title: 'Capacity', amount: '32.74 PB' },
{ title: 'Nodes', amount: '2569' },
{ title: 'Countries', amount: '61' },
{ title: 'Cores', amount: '63,968' },
]}
/>
<!-- CallToAction Widget *********** -->
<CallToAction

View File

@ -0,0 +1,4 @@
<span class="text-accent dark:text-white highlight">IN</span>ternet
<span class="text-accent dark:text-white highlight">CA</span>pacity

72
src/pages/partners.astro Normal file
View File

@ -0,0 +1,72 @@
---
import Features2 from '~/components/widgets/Features2.astro';
---
<!-- Features3 Widget ************** -->
<Features2
id="partners"
title="BE THE CLOUD."
subtitle="INCA is a community-driven, <br> open-source and decentralized cloud by everyone for everyone."
tagline="ECOSYSTEM"
items={[
{
title: 'Holochain',
description: "Holochain is a more peer2peer alternative to the blockchain, giving developers a framework for creating decentralized applications (dApps). Holochains method avoids keeping a global consensus, using an agent system in which each agent keeping a private fork.",
icon: 'tabler:server',
},
{
title: 'Earth Wallet',
description:
"A cutting-edge digital wallet solution designed to empower users with secure, decentralized control over their digital assets. With a focus on accessibility, security, and sustainability, Earth Wallet offers a seamless and user-friendly interface for managing various cryptocurrencies and digital tokens.",
icon: 'tabler:wallet',
},
{
title: 'Digital Free Zone',
description:
'The OurWorld Digital FreeZone, established in Zanzibar, is a groundbreaking partnership between ThreeFold and the government of Tanzania. This initiative aims to create a free sovereign digital and economic area, fostering innovation, growth, and prosperity within the region.',
icon: 'tabler:map',
},
{
title: 'Tanzania Sovereign Internet',
description:
"ThreeFold is proud to announce its partnership with the government of Tanzania to establish a sovereign internet, a groundbreaking initiative poised to revolutionize Tanzania's startup ecosystem fostering digital freedom.",
icon: 'tabler:flag',
},
{
title: 'Elestio',
description:
'Elestio is an innovative platform dedicated to providing cutting-edge decentralized applications (dApps) and services to users worldwide, with a focus on accessibility, security, and user empowerment.',
icon: 'tabler:device-desktop-code',
},
{
title: 'Vverse',
description: 'Vverse is an innovative platform that aims to create a virtual universe where users can explore, interact, and create in immersive virtual environments. It leverages cutting-edge technologies such as virtual reality (VR), augmented reality (AR), and blockchain.',
icon: 'tabler:stack-backward',
},
{
title: 'Helium',
description: 'Helium is a decentralized wireless network that enables low-power, long-range connectivity for Internet of Things (IoT) devices. By leveraging blockchain technology and a network of hotspots, Helium provides a cost-effective and scalable solution for IoT device connectivity.',
icon: 'tabler:wifi',
},
{
title: 'Sikana',
description:
'Sikana, a platform dedicated to providing education for all, has delivered over 400 million lessons through free educational videos. This partnership will empower communities worldwide with knowledge and skills, irrespective of their financial or geographical limitations. ',
icon: 'tabler:chalkboard',
},
{
title: 'ThreeFold',
description: "The backbone and first phases of the INCA project, ThreeFolds self-healing autonomous system empowers anyone to become a cloud service provider allowing people and organizations to buy, sell and use cloud resources autonomously and securely.",
icon: 'tabler:cloud-computing',
},
]}
>
<Fragment slot="bg">
<div class="absolute inset-0 bg-blue-50 dark:bg-transparent"></div>
</Fragment>
</Features2>

49
src/pages/purpose.astro Normal file
View File

@ -0,0 +1,49 @@
---
import Features from '~/components/widgets/Features.astro';
---
<Features
id="purpose"
tagline="PURPOSE"
title="Layer 0 for DePIN"
subtitle="Project INCA aims to be a Layer 0 for the DePIN community. DePIN projects can run on our decentralized cloud infrastructure, gaining access to a sovereign, decentralized, and reliable storage, network, and compute layer."
items={[
{
title: 'Zero-OS',
description:
'Bare Metal Stateless Operating System: Lightweight, self-healing, adaptable, efficient, and compatible with almost all hardware.',
icon: 'tabler:circle',
},
{
title: 'Web2/Web3 + AI Compatible',
description:
'Compatible with Web2, Web3 and AI: everything can run on our layer 0 infrastructure cloud.',
icon: 'tabler:world-www',
},
{
title: 'Mycelium Network',
description:
'End-to-end encrypted shortest path overlay network system, capable of connecting billions of nodes and compatible with the existing Internet. Routing decisions are based on proximity between peers.',
icon: 'tabler:mushroom',
},
{
title: 'Quantum Safe Storage',
description:
'Quantum Safe Storage can store data with up to 10x less overhead, data can never be lost or corrupted.',
icon: 'tabler:lock-square-rounded',
},
{
title: 'Open-Source and Community-Driven',
description:
"The grid is open-source and community-driven, with the community being an integral part of the ecosystem.",
icon: 'tabler:source-code',
},
{
title: 'Scalable Without limit',
description:
'The grid is scalable to the planetary level: from the edge to massive datacenter scale.',
icon: 'tabler:infinity',
},
]}
/>

View File

@ -0,0 +1,32 @@
---
import Steps from '~/components/widgets/Steps.astro';
---
<Steps
id="steps"
title="Get a node <br> up and running<br>in no time to earn rewards..."
items={[
{
title: 'Step 1: <span class="font-medium">Order a node</span>',
description:
"We propose different nodes to suit your specific situation. From basic generic cloud services to advanced AI workloads, it's all possible on the grid.",
icon: 'tabler:package',
},
{
title: 'Step 2: <span class="font-medium">Connect the node</em>',
description:
"Setting a node is a no brainer: plug the node to an eletric outlet and connect it to the Internet via a cable. That\'s it! You\'re hosting the grid!",
icon: 'tabler:plug-connected',
},
{
title: 'Step 3: <span class="font-medium">Earn rewards</span>',
description:
'The node is self-healing and autonomous. It\'s cruising speed from here on out: users can deploy on your node and you receive rewards.',
icon: 'tabler:award',
},
{
title: 'You\'re a cloud solution provider!',
icon: 'tabler:rosette-discount-check',
},
]}
image={{ src: '~/assets/images/currency_of_future.png', alt: '' }},
/>

View File

@ -8,7 +8,7 @@ import Layout from '~/layouts/PageLayout.astro';
import Steps from '~/components/widgets/Steps.astro';
import Content from '~/components/widgets/Content.astro';
import CallToAction from '~/components/widgets/CallToAction.astro';
import AutonomousCloud from './autonomouscloud_engine.astro'
const metadata = {
title: 'Technology',
};
@ -17,12 +17,14 @@ const metadata = {
<Layout metadata={metadata}>
<!-- Hero Widget ******************* -->
<Hero
<Hero
tagline="Technology"
>
<Fragment slot="title">
Our technology enables <br>a planetary-scale grid of interconnected nodes
<span class="text-accent dark:text-white highlight"> </span>
Our technology enables<br>
a <span class="text-accent dark:text-white highlight"> planetary-scale </span> grid
<br> of interconnected nodes
</Fragment>
<Fragment slot="subtitle">
@ -51,9 +53,7 @@ const metadata = {
},
]}
image={{
src: '~/assets/images/zeroos.jpg',
alt: 'Colorful Image',
loading: 'eager',
alt: '',
}}
>
<Fragment slot="content">
@ -87,8 +87,7 @@ const metadata = {
},
]}
image={{
src: '~/assets/images/mycelium.jpg',
alt: 'Colorful Image',
alt: '',
loading: 'eager',
}}
>
@ -107,6 +106,7 @@ const metadata = {
</Fragment>
</Content>
<Content
isReversed
id="qsfs"
@ -126,13 +126,15 @@ const metadata = {
},
]}
image={{
src: '~/assets/images/qsfsmatrix.jpg',
alt: 'Colorful Image',
alt: '',
loading: 'eager',
}}
>
<AutonomousCloud/>
<Fragment slot="content">
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Quantum-Safe File System</h2>
<h2 class="text-2xl font-bold tracking-tight dark:text-white sm:text-3xl mb-2">Quantum-Safe Storage</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>
@ -163,8 +165,7 @@ const metadata = {
},
]}
image={{
src: '~/assets/images/tfchain.png',
alt: 'Colorful Image',
alt: '',
loading: 'eager',
}}
>
@ -279,7 +280,7 @@ const metadata = {
<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>Project Internet Capacity is the Unbreakable Internet.
We have the technology for a planetary-scale alternative<br> to mainstream cloud and current monopolistic markets.<br><br>INCA is the Unbreakable Internet.
</Fragment>
</CallToAction>
</Layout>

View File

@ -17,8 +17,15 @@ module.exports = {
serif: ['var(--aw-font-serif, ui-serif)', ...defaultTheme.fontFamily.serif],
heading: ['var(--aw-font-heading, ui-sans-serif)', ...defaultTheme.fontFamily.sans],
},
letterSpacing: {
widest: '.25em',
custom: '.002em',
xs: '.0005em',
},
},
},
plugins: [typographyPlugin],
darkMode: 'class',
};