convert universe hardcoded imgs
@@ -1,7 +1,9 @@
|
||||
---
|
||||
id: farming
|
||||
title: ''
|
||||
image : ./farming.png
|
||||
url : /farming
|
||||
title: THE 3NODE
|
||||
image: ./farming.png
|
||||
button: Tell Me More!
|
||||
link: /farming
|
||||
---
|
||||
|
||||
Join the Internet economy by hosting a server at your home or office.
|
||||
|
||||
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 153 KiB |
|
Before Width: | Height: | Size: 146 KiB |
@@ -1,7 +1,9 @@
|
||||
---
|
||||
id: cloud
|
||||
title: ''
|
||||
image : ./cloud.png
|
||||
url : /token
|
||||
title: THE THREEFOLD P2P CLOUD
|
||||
image: ./cloud.png
|
||||
button: Tell Me More!
|
||||
link: /token
|
||||
---
|
||||
|
||||
Build secure software, applications and open Internet services.
|
||||
|
||||
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 203 KiB |
|
Before Width: | Height: | Size: 86 KiB |
@@ -1,7 +1,9 @@
|
||||
---
|
||||
id: marketplace
|
||||
title: ''
|
||||
image : ./marketplace.png
|
||||
url : /marketplace
|
||||
title: THE THREEFOLD MARKETPLACE
|
||||
image: ./marketplace.png
|
||||
button: Tell Me More!
|
||||
link: /marketplace
|
||||
---
|
||||
|
||||
Empower your community with peer-to-peer applications and tools.
|
||||
|
||||
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 8.9 KiB |
@@ -1,7 +1,9 @@
|
||||
---
|
||||
id: twin
|
||||
title: ''
|
||||
image : ./twin.png
|
||||
url : /twin
|
||||
title: THE DIGITAL TWIN
|
||||
image: ./twin.png
|
||||
button: Tell Me More!
|
||||
link: https://mydigitaltwin.io/
|
||||
---
|
||||
|
||||
Your private and secure access to the P2P internet.
|
||||
|
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 130 KiB |
|
Before Width: | Height: | Size: 74 KiB |
@@ -1,7 +1,9 @@
|
||||
---
|
||||
id: tech
|
||||
title: ''
|
||||
image : ./tech.png
|
||||
url : https://threefold.tech
|
||||
title: THE THREEFOLD TECH
|
||||
image: ./tech.png
|
||||
button: Tell Me More!
|
||||
link: https://threefold.tech
|
||||
---
|
||||
|
||||
Dig deeper into the technology behind the TF Grid.
|
||||
|
||||
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 165 KiB |
|
Before Width: | Height: | Size: 706 KiB |
@@ -1,7 +1,9 @@
|
||||
---
|
||||
id: aci
|
||||
title: ''
|
||||
image : ./aci.png
|
||||
url : /aci
|
||||
title: ALLIANCE FOR A CONSCIOUS INTERNET
|
||||
image: ./aci.png
|
||||
button: Tell Me More!
|
||||
link: /aci
|
||||
---
|
||||
|
||||
A collective ecosystem of planet and human centric projects.
|
||||
|
||||
|
Before Width: | Height: | Size: 217 KiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 2.2 MiB |
@@ -7,10 +7,7 @@
|
||||
>
|
||||
{{ main.title }}
|
||||
</h2>
|
||||
<p
|
||||
v-if="main !== null && main.subtitle"
|
||||
class="mb-6 text-gray-600"
|
||||
>
|
||||
<p v-if="main !== null && main.subtitle" class="mb-6 text-gray-600">
|
||||
{{ main.subtitle }}
|
||||
</p>
|
||||
</div>
|
||||
@@ -34,6 +31,45 @@
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="grid grid-cols-1 gap-4 sm:grid-cols-2 text-center"
|
||||
v-else-if="id == 'universe'"
|
||||
>
|
||||
<div
|
||||
v-for="(product, idx) in products"
|
||||
target="_blank"
|
||||
:key="idx"
|
||||
:href="product.link"
|
||||
class="m-auto rounded overflow-hidden transition duration-500"
|
||||
>
|
||||
<div>
|
||||
<g-image :src="img(product.image)" />
|
||||
<div class="bg-gray-100 font-bold text-xl pt-5">
|
||||
{{ product.title }}
|
||||
</div>
|
||||
<div
|
||||
v-html="product.content"
|
||||
class="bg-gray-100 py-2 text-gray-600"
|
||||
></div>
|
||||
<div v-if="product.button" class="bg-gray-100 mb-2 py-5 text-center">
|
||||
<a
|
||||
v-if="product.link.includes('http')"
|
||||
target="_blank"
|
||||
:href="product.link"
|
||||
class="bg-transparent text-sm learn-button border-gray-900 text-gray-900 px-12 py-2 mr-5 shadow rounded-full"
|
||||
>{{ product.button }}</a
|
||||
>
|
||||
<g-link
|
||||
v-else
|
||||
:href="product.link"
|
||||
class="bg-transparent text-sm learn-button border-gray-900 text-gray-900 px-12 py-2 mr-5 shadow rounded-full"
|
||||
>{{ product.button }}</g-link
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 gap-4 sm:grid-cols-2 text-center" v-else>
|
||||
<a
|
||||
v-for="(product, idx) in products"
|
||||
@@ -85,6 +121,9 @@ export default {
|
||||
return image;
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
console.log(this.products);
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
||||
@@ -128,6 +128,7 @@
|
||||
title
|
||||
content
|
||||
image
|
||||
button
|
||||
link
|
||||
}
|
||||
appsMain{
|
||||
|
||||