update farming page2

This commit is contained in:
2021-10-26 23:31:38 +02:00
parent 8d894e480f
commit 04afa44f2a
23 changed files with 62 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
id: CP_main
title: PROOF OF UTILIZATION
subtitle: THE CULTIVATION PROCESS
---

View File

@@ -0,0 +1,5 @@
---
id: CP_process_1
image: ./tft_farmers_earn2.png
---
TFT is used by users to reserve current or future Internet capacity on the ThreeFold Grid.

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@@ -0,0 +1,4 @@
---
id: CP_process_2
image: ./tft_process.png
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,5 @@
---
id: CP_process_3
image: ./tft_solution2.png
---
Internet capacity can be used to store data, run workloads and use peer-to-peer applications.

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@@ -18,4 +18,8 @@ cta2: farm_cta2
brandPanel: farm_brandPanel
brandPanel3: farm_brandPanel3
brandPanel2 : farm_brandPanel2
farmingMain: FP_main
farmingProcess: [process_1, process_2, process_3]
cultivationMain: CP_main
cultivationProcess: [CP_process_1, CP_process_2, CP_process_3]
---

View File

@@ -0,0 +1,5 @@
---
id: FP_main
title: PROOF OF CAPACITY
subtitle: THE FARMING PROCESS
---

View File

@@ -0,0 +1,5 @@
---
id: process_1
image: ./tft_hardware2.png
---
Anyone can download ThreeFold's OS and connect hardware and to the ThreeFold Grid and become a Farmer.

Binary file not shown.

After

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -0,0 +1,4 @@
---
id: process_2
image: ./tft_process.png
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,5 @@
---
id: process_3
image: ./tft_farmers_earn2.png
---
Farmers earn TFT for achieving a certain uptime and as proof of capacity. We call that Farming.

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -1,7 +1,7 @@
<template>
<div class="bg-white">
<div
v-if="id == 'tft' && !farmingProcess && !cultivationProcess"
v-if="id == 'farm' && !farmingProcess && !cultivationProcess"
class="
mx-auto
lg:py-16
@@ -38,7 +38,7 @@
</div>
<div
v-else-if="id == 'tft' && (farmingProcess || cultivationProcess)"
v-else-if="id == 'farm' && (farmingProcess || cultivationProcess)"
class="mx-auto lg:py-16 px-4 max-w-screen-xl sm:px-6 lg:px-8 tft_section"
>
<div class="space-y-12">

View File

@@ -130,6 +130,8 @@
:sections="$page.markdownPage.comparisonSecs"
/> -->
<CallToAction
:id="$page.markdownPage.id"
v-if="
@@ -237,6 +239,22 @@
:brandPanel3="true"
/>
<TFTFuel
v-if="$page.markdownPage.farmingProcess.length > 0"
:id="$page.markdownPage.id"
:main="$page.markdownPage.farmingMain"
:sections="$page.markdownPage.farmingProcess"
:farmingProcess="true"
/>
<TFTFuel
v-if="$page.markdownPage.cultivationProcess.length > 0"
:id="$page.markdownPage.id"
:main="$page.markdownPage.cultivationMain"
:sections="$page.markdownPage.cultivationProcess"
:cultivationProcess="true"
/>
<CallToAction
:id="$page.markdownPage.id"
v-if="$page.markdownPage.cta2 && $page.markdownPage.id == 'farm'"