init cultivation process
This commit is contained in:
5
content/page/tft/cultivationProcess/main/index.md
Normal file
5
content/page/tft/cultivationProcess/main/index.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
id: CP_main
|
||||||
|
title: PROOF OF UTILIZATION
|
||||||
|
subtitle: THE CULTIVATION PROCESS
|
||||||
|
---
|
||||||
5
content/page/tft/cultivationProcess/process_1/index.md
Normal file
5
content/page/tft/cultivationProcess/process_1/index.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
id: CP_process_1
|
||||||
|
image: ./tft_solution.png
|
||||||
|
---
|
||||||
|
Solution Providers create experiences on the ThreeFold Grid.
|
||||||
BIN
content/page/tft/cultivationProcess/process_1/tft_solution.png
Normal file
BIN
content/page/tft/cultivationProcess/process_1/tft_solution.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 46 KiB |
4
content/page/tft/cultivationProcess/process_2/index.md
Normal file
4
content/page/tft/cultivationProcess/process_2/index.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
id: CP_process_2
|
||||||
|
image: ./tft_process.png
|
||||||
|
---
|
||||||
BIN
content/page/tft/cultivationProcess/process_2/tft_process.png
Normal file
BIN
content/page/tft/cultivationProcess/process_2/tft_process.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
5
content/page/tft/cultivationProcess/process_3/index.md
Normal file
5
content/page/tft/cultivationProcess/process_3/index.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
id: CP_process_3
|
||||||
|
image: ./tft_farmers_earn.png
|
||||||
|
---
|
||||||
|
ThreeFold Grid users pay cultivation fees (using TFT) for using compute, storage and network capacity.
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 60 KiB |
@@ -8,6 +8,7 @@ header_title: THE WORLD IS USING A NEW INTERNET
|
|||||||
header_image: ./tft_header.jpg
|
header_image: ./tft_header.jpg
|
||||||
header_altImg: TFT
|
header_altImg: TFT
|
||||||
header_excerpt: It runs on TFT
|
header_excerpt: It runs on TFT
|
||||||
|
solution_image: ./tft_limited.jpg
|
||||||
button: Get TFT
|
button: Get TFT
|
||||||
link: /
|
link: /
|
||||||
cta: tft_cta
|
cta: tft_cta
|
||||||
@@ -19,4 +20,6 @@ useTftMain: useTft_main
|
|||||||
tftUses: [col1, col2, col3]
|
tftUses: [col1, col2, col3]
|
||||||
farmingMain: FP_main
|
farmingMain: FP_main
|
||||||
farmingProcess: [process_1, process_2, process_3]
|
farmingProcess: [process_1, process_2, process_3]
|
||||||
|
cultivationMain: CP_main
|
||||||
|
cultivationProcess: [CP_process_1, CP_process_2, CP_process_3]
|
||||||
---
|
---
|
||||||
|
|||||||
BIN
content/page/tft/tft_limited.jpg
Normal file
BIN
content/page/tft/tft_limited.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 172 KiB |
@@ -419,6 +419,22 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
use: '@gridsome/source-filesystem',
|
||||||
|
options: {
|
||||||
|
typeName: 'CultivationProcessMain',
|
||||||
|
path: './content/page/**/cultivationProcess/main/*.md',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
use: '@gridsome/source-filesystem',
|
||||||
|
options: {
|
||||||
|
typeName: 'CultivationProcess',
|
||||||
|
path: './content/page/**/cultivationProcess/**/*.md',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
use: '@gridsome/source-filesystem',
|
use: '@gridsome/source-filesystem',
|
||||||
options: {
|
options: {
|
||||||
@@ -483,7 +499,9 @@ module.exports = {
|
|||||||
useTftMain: 'TftUsesMain',
|
useTftMain: 'TftUsesMain',
|
||||||
tftUses: 'TftUses',
|
tftUses: 'TftUses',
|
||||||
farmingMain: 'FarmingProcessMain',
|
farmingMain: 'FarmingProcessMain',
|
||||||
farmingProcess: 'FarmingProcess'
|
farmingProcess: 'FarmingProcess',
|
||||||
|
cultivationMain: 'CultivationProcessMain',
|
||||||
|
cultivationProcess: 'CultivationProcess'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,8 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="bg-white">
|
<div class="bg-white">
|
||||||
<div
|
<div
|
||||||
v-if="id == 'tft' && !farmingProcess"
|
v-if="id == 'tft' && !farmingProcess && !cultivationProcess"
|
||||||
class="mx-auto py-12 px-4 max-w-screen-xl sm:px-6 lg:px-8 lg:py-24 tft_section"
|
class="
|
||||||
|
mx-auto
|
||||||
|
py-12
|
||||||
|
px-4
|
||||||
|
max-w-screen-xl
|
||||||
|
sm:px-6
|
||||||
|
lg:px-8
|
||||||
|
lg:py-24
|
||||||
|
tft_section
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="
|
class="
|
||||||
@@ -30,7 +39,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-else-if="id == 'tft' && farmingProcess"
|
v-else-if="id == 'tft' && (farmingProcess || cultivationProcess)"
|
||||||
class="mx-auto py-12 px-4 max-w-screen-xl sm:px-6 lg:px-8 lg:py-24"
|
class="mx-auto py-12 px-4 max-w-screen-xl sm:px-6 lg:px-8 lg:py-24"
|
||||||
>
|
>
|
||||||
<div class="space-y-12">
|
<div class="space-y-12">
|
||||||
@@ -85,83 +94,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-center">
|
|
||||||
<div class="inline-flex" v-if="main.button">
|
|
||||||
<a
|
|
||||||
v-if="urlChecker(main.link)"
|
|
||||||
target="_blank"
|
|
||||||
:href="main.link"
|
|
||||||
class="
|
|
||||||
bg-blue-900
|
|
||||||
text-sm
|
|
||||||
learn-button
|
|
||||||
hover:bg-blue-800
|
|
||||||
text-gray-100
|
|
||||||
px-12
|
|
||||||
py-2
|
|
||||||
mr-5
|
|
||||||
shadow
|
|
||||||
rounded-full
|
|
||||||
"
|
|
||||||
>{{ main.button }}</a
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
v-else
|
|
||||||
:href="main.link"
|
|
||||||
class="
|
|
||||||
bg-blue-900
|
|
||||||
text-sm
|
|
||||||
learn-button
|
|
||||||
hover:bg-blue-800
|
|
||||||
text-gray-100
|
|
||||||
px-12
|
|
||||||
py-2
|
|
||||||
mr-5
|
|
||||||
shadow
|
|
||||||
rounded-full
|
|
||||||
"
|
|
||||||
>{{ main.button }}</a
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="inline-flex" v-if="main.button2">
|
|
||||||
<a
|
|
||||||
v-if="urlChecker(main.link2)"
|
|
||||||
target="_blank"
|
|
||||||
:href="main.link2"
|
|
||||||
class="
|
|
||||||
bg-blue-900
|
|
||||||
text-sm
|
|
||||||
learn-button
|
|
||||||
hover:bg-blue-800
|
|
||||||
text-gray-100
|
|
||||||
px-12
|
|
||||||
py-2
|
|
||||||
mr-5
|
|
||||||
shadow
|
|
||||||
rounded-full
|
|
||||||
"
|
|
||||||
>{{ main.button2 }}</a
|
|
||||||
>
|
|
||||||
<a
|
|
||||||
v-else
|
|
||||||
:href="main.link2"
|
|
||||||
class="
|
|
||||||
bg-blue-900
|
|
||||||
text-sm
|
|
||||||
learn-button
|
|
||||||
hover:bg-blue-800
|
|
||||||
text-gray-100
|
|
||||||
px-12
|
|
||||||
py-2
|
|
||||||
mr-5
|
|
||||||
shadow
|
|
||||||
rounded-full
|
|
||||||
"
|
|
||||||
>{{ main.button2 }}</a
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -305,7 +237,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ["id", "farmingProcess", "main", "sections"],
|
props: ["id", "farmingProcess", "cultivationProcess", "main", "sections"],
|
||||||
|
mounted() {
|
||||||
|
console.log(this.sections);
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
img(image) {
|
img(image) {
|
||||||
if (!image) return "";
|
if (!image) return "";
|
||||||
|
|||||||
@@ -132,6 +132,19 @@
|
|||||||
:farmingProcess="true"
|
:farmingProcess="true"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<TFTFuel
|
||||||
|
v-if="$page.markdownPage.cultivationProcess.length > 0"
|
||||||
|
:id="$page.markdownPage.id"
|
||||||
|
:main="$page.markdownPage.cultivationMain"
|
||||||
|
:sections="$page.markdownPage.cultivationProcess"
|
||||||
|
:cultivationProcess="true"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<g-image
|
||||||
|
v-if="$page.markdownPage.solution_image"
|
||||||
|
:src="$page.markdownPage.solution_image"
|
||||||
|
/>
|
||||||
|
|
||||||
<Partenerships
|
<Partenerships
|
||||||
v-if="
|
v-if="
|
||||||
$page.markdownPage.partnerships &&
|
$page.markdownPage.partnerships &&
|
||||||
@@ -497,6 +510,17 @@
|
|||||||
image
|
image
|
||||||
content
|
content
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cultivationMain {
|
||||||
|
id
|
||||||
|
title
|
||||||
|
subtitle
|
||||||
|
}
|
||||||
|
cultivationProcess{
|
||||||
|
id
|
||||||
|
image
|
||||||
|
content
|
||||||
|
}
|
||||||
}
|
}
|
||||||
allCustomCta {
|
allCustomCta {
|
||||||
edges {
|
edges {
|
||||||
|
|||||||
Reference in New Issue
Block a user