diff --git a/content/page/home/home.md b/content/page/home/home.md index d058cac6f..0a234f177 100644 --- a/content/page/home/home.md +++ b/content/page/home/home.md @@ -16,7 +16,7 @@ button2: Peer-to-Peer Cloud link2: https://cloud.threefold.io/ button3: How it Works link3: /how-it-works - +logosMain : logo_home cta2: home_cta2 productsMain: product productData: [nodes_home, tokens_home, storage_home] diff --git a/content/page/home/logos/logo1/logo.md b/content/page/home/logos/logo1/logo.md deleted file mode 100644 index f812fdf55..000000000 --- a/content/page/home/logos/logo1/logo.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -id: logo1 -image: ./our_partners.png -url: /partners ---- diff --git a/content/page/home/logos/logo1/our_partners.png b/content/page/home/logos/logo1/our_partners.png deleted file mode 100644 index a7927136f..000000000 Binary files a/content/page/home/logos/logo1/our_partners.png and /dev/null differ diff --git a/content/page/home/logos/logo1/solidaridad.png b/content/page/home/logos/logo1/solidaridad.png deleted file mode 100644 index 6ea98956b..000000000 Binary files a/content/page/home/logos/logo1/solidaridad.png and /dev/null differ diff --git a/content/page/home/logos/main/main.md b/content/page/home/logos/main/main.md index 21088edc4..46cc529e7 100644 --- a/content/page/home/logos/main/main.md +++ b/content/page/home/logos/main/main.md @@ -1,7 +1,6 @@ --- id: logo_home title: Our Partners -image: ./our_partners.png button: Check All Partners link : /partners --- diff --git a/src/components/marketing/sections/cta-sections/logoShowcase.vue b/src/components/marketing/sections/cta-sections/logoShowcase.vue index 4fa6aac0f..0a84674e9 100644 --- a/src/components/marketing/sections/cta-sections/logoShowcase.vue +++ b/src/components/marketing/sections/cta-sections/logoShowcase.vue @@ -28,33 +28,51 @@ -
- - - + +
+
+ + + + + + + +
+
+
+ +
+ - {{ main.button }} diff --git a/src/pages/Index.vue b/src/pages/Index.vue index 35b2fd171..28c569f87 100644 --- a/src/pages/Index.vue +++ b/src/pages/Index.vue @@ -34,17 +34,17 @@ - - +
@@ -358,9 +358,19 @@ } } } + + allProject (sortBy: "rank", order: ASC, filter: { category: { contains: ["foundation"]}}){ + edges { + node { + id + title + path + rank + logo + } + } + } } - - @@ -423,49 +433,49 @@ export default { return img; }, }, - metaInfo() { - return { - title: "", - titleTemplate: "ThreeFold | Welcome", - meta: [ - { - key: "description", - name: "description", - content: this.$page.markdownPage.metaDesc, - }, - { - key: "og:title", - property: "og:title", - content: this.$page.markdownPage.metaTitle, - }, - { - key: "og:description", - property: "og:description", - content: this.$page.markdownPage.metaDesc, - }, - { - key: "og:image", - property: "og:image", - content: this.getImg, - }, - { - key: "twitter:description", - name: "twitter:description", - content: this.$page.markdownPage.metaDesc, - }, - { - key: "twitter:image", - property: "twitter:image", - content: this.getImg, - }, - { - key: "twitter:title", - property: "twitter:title", - content: this.$page.markdownPage.metaTitle, - }, - ], - }; - }, + // metaInfo() { + // return { + // title: "", + // titleTemplate: "ThreeFold | Welcome", + // meta: [ + // { + // key: "description", + // name: "description", + // content: this.$page.markdownPage.metaDesc, + // }, + // { + // key: "og:title", + // property: "og:title", + // content: this.$page.markdownPage.metaTitle, + // }, + // { + // key: "og:description", + // property: "og:description", + // content: this.$page.markdownPage.metaDesc, + // }, + // { + // key: "og:image", + // property: "og:image", + // content: this.getImg, + // }, + // { + // key: "twitter:description", + // name: "twitter:description", + // content: this.$page.markdownPage.metaDesc, + // }, + // { + // key: "twitter:image", + // property: "twitter:image", + // content: this.getImg, + // }, + // { + // key: "twitter:title", + // property: "twitter:title", + // content: this.$page.markdownPage.metaTitle, + // }, + // ], + // }; + // }, };