diff --git a/content/page/about-us/about-us.md b/content/page/about-us/about-us.md index f4d59c1ab..757a766bc 100644 --- a/content/page/about-us/about-us.md +++ b/content/page/about-us/about-us.md @@ -12,4 +12,6 @@ solution_image: button: The Digital Future link: "#" brandPanel: about_brandPanel +brandPanel2: about_brandPanel2 +brandPanel3: about_brandPanel3 --- diff --git a/content/page/about-us/brandPanel2/index.md b/content/page/about-us/brandPanel2/index.md new file mode 100644 index 000000000..812c165cc --- /dev/null +++ b/content/page/about-us/brandPanel2/index.md @@ -0,0 +1,9 @@ +--- +id: about_brandPanel2 +title: OUR CUTTING-EDGE TECHNOLOGY ALLOWS PEOPLE TO OWN THEIR DATA +subtitle: +sourceUrl: '' +btnTxt: +image: about_logos.png # src/assets/brandPanel/.. +--- +Using a variety of innovative technologies including autonomous IT, blockchain and peer-to-peer networking, we allow people to own 100% of their data. On our system censorship, user tracking and privacy breaches are just not possible, not even for ThreeFold. People own 100% of their data. All our code is open source and available for everyone to review or use as they see fit. diff --git a/gridsome.config.js b/gridsome.config.js index cbbd66e90..c04d38004 100644 --- a/gridsome.config.js +++ b/gridsome.config.js @@ -170,6 +170,14 @@ module.exports = { } }, + { + use: '@gridsome/source-filesystem', + options: { + typeName: 'BrandPanel3', + path: './content/page/**/brandPanel3/*.md', + } + }, + { use: '@gridsome/source-filesystem', options: { diff --git a/src/assets/images/brandPanel/about_logos.png b/src/assets/images/brandPanel/about_logos.png new file mode 100644 index 000000000..c3b8c3a9e Binary files /dev/null and b/src/assets/images/brandPanel/about_logos.png differ diff --git a/src/components/marketing/sections/cta-sections/BrandPanel.vue b/src/components/marketing/sections/cta-sections/BrandPanel.vue index 29e0dcb30..aa59c034d 100644 --- a/src/components/marketing/sections/cta-sections/BrandPanel.vue +++ b/src/components/marketing/sections/cta-sections/BrandPanel.vue @@ -251,8 +251,11 @@ - -
+ +
@@ -297,28 +300,19 @@
-
- -
-

+

{{ brand.title }} {{ brand.subtitle }}

+
+ +
export default { - props: ["brand", "id", "diveInto"], + props: ["brand", "id", "brandPanel2"], computed: { image() { return this.brand.image.src diff --git a/src/templates/MarkdownPage.vue b/src/templates/MarkdownPage.vue index 2a86461c9..fb4fc6891 100644 --- a/src/templates/MarkdownPage.vue +++ b/src/templates/MarkdownPage.vue @@ -28,6 +28,13 @@ :brand="$page.markdownPage.brandPanel" v-if="$page.markdownPage.brandPanel" /> + +