diff --git a/content/page/about-us/about-us.md b/content/page/about-us/about-us.md index 8b86e4e03..3ec45fd68 100644 --- a/content/page/about-us/about-us.md +++ b/content/page/about-us/about-us.md @@ -16,4 +16,5 @@ brandPanel2: about_brandPanel2 brandPanel3: about_brandPanel3 cta: about_cta cta2: about_cta2 +roadmap: about_roadmap --- diff --git a/content/page/about-us/roadmap/about_roadmap.png b/content/page/about-us/roadmap/about_roadmap.png new file mode 100644 index 000000000..1d085141f Binary files /dev/null and b/content/page/about-us/roadmap/about_roadmap.png differ diff --git a/content/page/about-us/roadmap/index.md b/content/page/about-us/roadmap/index.md new file mode 100644 index 000000000..3cb6e6ea8 --- /dev/null +++ b/content/page/about-us/roadmap/index.md @@ -0,0 +1,13 @@ +--- +id: about_roadmap +image: ./about_roadmap.png +--- +And we’re nowhere done as we’re aiming for new heights. +
+We continue to work towards our mission of a truly +
+democratized, secure and scalable digital infrastructure to +
+support a truly interconnected world. Our mission is bold +
+and motivates every step we make diff --git a/gridsome.config.js b/gridsome.config.js index bda8c859b..fce18018b 100644 --- a/gridsome.config.js +++ b/gridsome.config.js @@ -361,6 +361,14 @@ module.exports = { } }, + { + use: '@gridsome/source-filesystem', + options: { + typeName: 'Roadmap', + path: './content/page/**/roadmap/*.md', + } + }, + { use: '@gridsome/source-filesystem', options: { @@ -410,7 +418,8 @@ module.exports = { farmingProcess: 'FarmingProcess', cultivationMain: 'CultivationProcessMain', cultivationProcess: 'CultivationProcess', - map: 'Map' + map: 'Map', + roadmap: 'Roadmap' } } }, diff --git a/src/components/custom/Roadmap.vue b/src/components/custom/Roadmap.vue new file mode 100644 index 000000000..4ddf433fd --- /dev/null +++ b/src/components/custom/Roadmap.vue @@ -0,0 +1,17 @@ + + + \ No newline at end of file diff --git a/src/templates/MarkdownPage.vue b/src/templates/MarkdownPage.vue index fed89432a..75e46a0ee 100644 --- a/src/templates/MarkdownPage.vue +++ b/src/templates/MarkdownPage.vue @@ -67,6 +67,7 @@ :cta="$page.markdownPage.cta2" :textOnly="true" /> +