diff --git a/content/page/tft/tft.md b/content/page/tft/tft.md index b0ccbbba5..34a2036a7 100644 --- a/content/page/tft/tft.md +++ b/content/page/tft/tft.md @@ -15,4 +15,6 @@ brandPanel: tft_brandPanel card: tft_card carousel: [slide1, slide2, slide3, slide4, slide5, slide6 , slide7] sliderMain: slider_main +useTftMain: useTft_main +tftUses: [col1, col2, col3] --- diff --git a/content/page/tft/tftUses/col1/index.md b/content/page/tft/tftUses/col1/index.md new file mode 100644 index 000000000..3f6a59ed1 --- /dev/null +++ b/content/page/tft/tftUses/col1/index.md @@ -0,0 +1,4 @@ +--- +id: col1 +title: TFT USES +--- \ No newline at end of file diff --git a/content/page/tft/tftUses/col2/col2.md b/content/page/tft/tftUses/col2/col2.md new file mode 100644 index 000000000..80f4bcdf6 --- /dev/null +++ b/content/page/tft/tftUses/col2/col2.md @@ -0,0 +1,4 @@ +--- +id: col2 +--- +A TFT is crearted everytime someone adds capacity to the ThreeFold Grid. This is rewarded to the person adding the capacity. \ No newline at end of file diff --git a/content/page/tft/tftUses/col3/col3.md b/content/page/tft/tftUses/col3/col3.md new file mode 100644 index 000000000..3b50dd36d --- /dev/null +++ b/content/page/tft/tftUses/col3/col3.md @@ -0,0 +1,4 @@ +--- +id: col3 +--- +Developers and solution providers also use TFT to purchase capacity, storage or compute on the ThreeFold Grid. diff --git a/content/page/tft/tftUses/main/index.md b/content/page/tft/tftUses/main/index.md new file mode 100644 index 000000000..b51696738 --- /dev/null +++ b/content/page/tft/tftUses/main/index.md @@ -0,0 +1,4 @@ +--- +id: useTft_main +image: ./tft_uses.jpg +--- \ No newline at end of file diff --git a/content/page/tft/tftUses/main/tft_uses.jpg b/content/page/tft/tftUses/main/tft_uses.jpg new file mode 100644 index 000000000..a6f84c9a8 Binary files /dev/null and b/content/page/tft/tftUses/main/tft_uses.jpg differ diff --git a/gridsome.config.js b/gridsome.config.js index 20eb14bfd..07c43fa0f 100644 --- a/gridsome.config.js +++ b/gridsome.config.js @@ -387,6 +387,22 @@ module.exports = { } }, + { + use: '@gridsome/source-filesystem', + options: { + typeName: 'TftUsesMain', + path: './content/page/**/tftUses/main/*.md', + } + }, + + { + use: '@gridsome/source-filesystem', + options: { + typeName: 'TftUses', + path: './content/page/**/tftUses/**/*.md', + } + }, + { use: '@gridsome/source-filesystem', options: { @@ -447,7 +463,9 @@ module.exports = { pageHeader: 'PageHeader', card: 'Card', carousel: 'Carousel', - sliderMain: 'CarouselMain' + sliderMain: 'CarouselMain', + useTftMain: 'TftUsesMain', + tftUses: 'TftUses' } } }, diff --git a/src/components/marketing/sections/team-sections/with_large_images.vue b/src/components/marketing/sections/team-sections/with_large_images.vue index cab2b06db..b07c11821 100644 --- a/src/components/marketing/sections/team-sections/with_large_images.vue +++ b/src/components/marketing/sections/team-sections/with_large_images.vue @@ -1,9 +1,65 @@