update content markdown
This commit is contained in:
@@ -5,6 +5,6 @@ image: ./solution_card_1.png
|
|||||||
button: Learn More
|
button: Learn More
|
||||||
link: '/https://wiki.threefold.io/#/threefold_layers'
|
link: '/https://wiki.threefold.io/#/threefold_layers'
|
||||||
order: 1
|
order: 1
|
||||||
excerpt: By starting again from zero, we created a unique lightweight and autonomous OS built from a Linux Kernel. From there, we developed a fully automous system with its own network connection overlay, unique storage algorythm, and storage system that alltogether (1) eliminate backdoors for hackers, (2) eliminate complexity from the model (3) ensure data is fully secured and encrypted.
|
|
||||||
---
|
|
||||||
|
|
||||||
|
---
|
||||||
|
By starting again from zero, we created a unique lightweight and autonomous OS built from a Linux Kernel. From there, we developed a fully automous system with its own network connection overlay, unique storage algorythm, and storage system that alltogether (1) eliminate backdoors for hackers, (2) eliminate complexity from the model (3) ensure data is fully secured and encrypted.
|
||||||
|
|||||||
@@ -5,5 +5,6 @@ image: ./tft_stats.png
|
|||||||
button: TFT STATISTICS
|
button: TFT STATISTICS
|
||||||
link: '/https://tokenstats.threefoldtoken.com/'
|
link: '/https://tokenstats.threefoldtoken.com/'
|
||||||
order: 1
|
order: 1
|
||||||
excerpt: TFT is live and actively traded.
|
|
||||||
---
|
---
|
||||||
|
TFT is live and actively traded.
|
||||||
@@ -5,5 +5,4 @@ image: ./card3.jpeg
|
|||||||
button: Start Now
|
button: Start Now
|
||||||
link: '/blog'
|
link: '/blog'
|
||||||
order: 3
|
order: 3
|
||||||
excerpt:
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ image: ./live_stats_1.png
|
|||||||
button: TFT STATISTICS
|
button: TFT STATISTICS
|
||||||
link: '/https://tokenstats.threefoldtoken.com/'
|
link: '/https://tokenstats.threefoldtoken.com/'
|
||||||
order: 1
|
order: 1
|
||||||
excerpt: TFT is live and actively traded.
|
---
|
||||||
---
|
TFT is live and actively traded.
|
||||||
@@ -259,7 +259,7 @@ export default {
|
|||||||
resetAll() {
|
resetAll() {
|
||||||
this.$emit("resetAll", true);
|
this.$emit("resetAll", true);
|
||||||
this.topic = "All Topics";
|
this.topic = "All Topics";
|
||||||
this.year = "All Year";
|
this.year = "All Years";
|
||||||
this.month = "All Months";
|
this.month = "All Months";
|
||||||
},
|
},
|
||||||
close(e) {
|
close(e) {
|
||||||
|
|||||||
@@ -10,25 +10,24 @@
|
|||||||
v-for="(section, index) in sections"
|
v-for="(section, index) in sections"
|
||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<img
|
<g-image
|
||||||
class="w-1/2 mx-auto mb-8 h-32"
|
class="w-1/2 mx-auto mb-8 h-32"
|
||||||
:src="section.svg.src"
|
:src="section.svg.src"
|
||||||
:alt="section.title"
|
:alt="section.title"
|
||||||
/>
|
/>
|
||||||
<h3 class="text-2xl mb-4 font-semibold font-heading">
|
<h3 class="text-2xl mb-4 font-semibold font-heading">
|
||||||
<span
|
<!-- <span
|
||||||
class="inline-flex items-center justify-center h-12 w-12 mr-2 border rounded-full"
|
class="inline-flex items-center justify-center h-12 w-12 mr-2 border rounded-full"
|
||||||
>{{ index + 1 }}</span
|
>{{ index + 1 }}</span
|
||||||
>
|
> -->
|
||||||
<span>{{ section.title }}</span>
|
<span>{{ section.title }}</span>
|
||||||
</h3>
|
</h3>
|
||||||
<p class="text-gray-600">
|
<div class="text-gray-700" v-html="section.content"></div>
|
||||||
{{ section.excerpt }}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<g-link
|
<g-link
|
||||||
|
v-if="main.button"
|
||||||
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 mr-3 font-semibold rounded shadow"
|
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 mr-3 font-semibold rounded shadow"
|
||||||
:to="main.link"
|
:to="main.link"
|
||||||
>{{ main.button }}</g-link
|
>{{ main.button }}</g-link
|
||||||
|
|||||||
@@ -1,38 +1,42 @@
|
|||||||
<template>
|
<template>
|
||||||
<section class="py-12 px-4">
|
<section class="py-12 px-4">
|
||||||
<h2 class="text-3xl text-center mb-12 font-semibold font-heading">
|
<h2 class="text-4xl text-center mb-12 font-semibold font-heading">
|
||||||
{{ main.title }}
|
{{ main.title }}
|
||||||
</h2>
|
</h2>
|
||||||
<div class="flex flex-wrap -mx-4 mb-6">
|
<div class="flex flex-wrap -mx-4 mb-6">
|
||||||
<div
|
<div
|
||||||
v-for="feature in features"
|
v-for="feature in features"
|
||||||
:key="feature.id"
|
:key="feature.id"
|
||||||
class="lg:w-1/4 px-4 mb-6"
|
class="lg:w-1/2 px-4 mb-6 text-center"
|
||||||
>
|
>
|
||||||
<g-image class="w-10 h-10" :src="feature.svg.src"></g-image>
|
<g-image
|
||||||
|
class="w-10 h-10 mx-auto"
|
||||||
|
v-if="feature.svg"
|
||||||
|
:src="feature.svg.src"
|
||||||
|
:alt="feature.svg"
|
||||||
|
></g-image>
|
||||||
<h3 class="text-xl my-3 font-semibold font-heading">
|
<h3 class="text-xl my-3 font-semibold font-heading">
|
||||||
{{ feature.title }}
|
{{ feature.title }}
|
||||||
</h3>
|
</h3>
|
||||||
<p class="text-sm text-gray-600 leading-relaxed">
|
<div
|
||||||
{{ feature.excerpt }}
|
v-html="feature.content"
|
||||||
</p>
|
class="text-sm text-gray-700 leading-relaxed"
|
||||||
|
></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-center">
|
<div class="text-center" v-if="main.btn">
|
||||||
<g-link
|
<g-link
|
||||||
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 mr-3 font-semibold rounded shadow"
|
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 mr-3 font-semibold rounded shadow"
|
||||||
:to="main.link"
|
:to="main.link"
|
||||||
>{{ main.btn }}</g-link
|
>{{ main.btn }}</g-link
|
||||||
>
|
>
|
||||||
<p class="text-sm text-gray-400 mt-5">
|
<div v-html="main.content" class="text-sm text-gray-400 mt-5"></div>
|
||||||
{{ main.excerpt }}
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ["main", "features"]
|
props: ["main", "features"],
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@@ -21,9 +21,10 @@
|
|||||||
<h3 class="text-2xl mb-2 font-semibold font-heading">
|
<h3 class="text-2xl mb-2 font-semibold font-heading">
|
||||||
{{ howItWorkSec.title }}
|
{{ howItWorkSec.title }}
|
||||||
</h3>
|
</h3>
|
||||||
<p class="text-gray-600 leading-relaxed">
|
<div
|
||||||
{{ howItWorkSec.excerpt }}
|
class="text-gray-700 leading-relaxed"
|
||||||
</p>
|
v-html="howItWorkSec.content"
|
||||||
|
></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,34 +1,46 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="lg:py-12 lg:flex lg:justify-center flex flex-col">
|
<div class="lg:py-12 lg:flex lg:justify-center flex flex-col">
|
||||||
<div class="bg-white lg:mx-8 lg:flex lg:max-w-5xl lg:shadow-lg lg:rounded-lg">
|
<div
|
||||||
<div class="lg:w-1/2">
|
class="bg-white lg:mx-8 lg:flex lg:max-w-5xl lg:shadow-lg lg:rounded-lg"
|
||||||
<div class="h-64 bg-cover lg:rounded-lg lg:h-full" :style="img"></div>
|
>
|
||||||
</div>
|
<div class="lg:w-1/2">
|
||||||
<div class="py-12 px-6 max-w-xl lg:max-w-5xl lg:w-1/2">
|
<div class="h-64 bg-cover lg:rounded-lg lg:h-full" :style="img"></div>
|
||||||
<h2 class="text-3xl text-gray-700 font-bold">{{ card.title }}</h2>
|
|
||||||
<p class="mt-4 text-gray-700">{{ card.excerpt }}</p>
|
|
||||||
<div class="mt-8" v-if="card.link">
|
|
||||||
<a :href="card.link" class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 font-semibold rounded">{{ card.button }}</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="py-12 px-6 max-w-xl lg:max-w-5xl lg:w-1/2">
|
||||||
</div>
|
<h2 class="text-3xl text-gray-700 font-bold">{{ card.title }}</h2>
|
||||||
|
<div class="mt-4 text-gray-700" v-html="card.content"></div>
|
||||||
|
<div class="mt-8" v-if="card.button">
|
||||||
|
<a
|
||||||
|
v-if="card.link.includes('http')"
|
||||||
|
target="_blank"
|
||||||
|
:href="card.link"
|
||||||
|
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 font-semibold rounded"
|
||||||
|
>{{ card.button }}</a
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
v-else
|
||||||
|
:href="card.link"
|
||||||
|
class="bg-gray-900 learn-button hover:bg-gray-700 text-gray-100 px-5 py-3 font-semibold rounded"
|
||||||
|
>{{ card.button }}</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
computed: {
|
computed: {
|
||||||
img: function(){
|
img: function () {
|
||||||
if(this.card.image.src)
|
if (this.card.image.src)
|
||||||
return "background-image:url(" + this.card.image.src + ")"
|
return "background-image:url(" + this.card.image.src + ")";
|
||||||
return this.card.image
|
return this.card.image;
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
|
||||||
props: ["card"],
|
props: ["card"],
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@@ -137,7 +137,7 @@
|
|||||||
button
|
button
|
||||||
link
|
link
|
||||||
order
|
order
|
||||||
excerpt
|
content
|
||||||
}
|
}
|
||||||
contactData{
|
contactData{
|
||||||
id
|
id
|
||||||
@@ -157,7 +157,7 @@
|
|||||||
howItWorks{
|
howItWorks{
|
||||||
id
|
id
|
||||||
title
|
title
|
||||||
excerpt
|
content
|
||||||
}
|
}
|
||||||
howItWorksMain{
|
howItWorksMain{
|
||||||
id
|
id
|
||||||
@@ -173,7 +173,7 @@
|
|||||||
productData{
|
productData{
|
||||||
id
|
id
|
||||||
title
|
title
|
||||||
excerpt
|
content
|
||||||
image
|
image
|
||||||
}
|
}
|
||||||
brandPanel{
|
brandPanel{
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
title
|
title
|
||||||
btn
|
btn
|
||||||
link
|
link
|
||||||
excerpt
|
content
|
||||||
}
|
}
|
||||||
logos{
|
logos{
|
||||||
id
|
id
|
||||||
@@ -200,7 +200,7 @@
|
|||||||
id
|
id
|
||||||
title
|
title
|
||||||
svg
|
svg
|
||||||
excerpt
|
content
|
||||||
}
|
}
|
||||||
cta{
|
cta{
|
||||||
id
|
id
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
id
|
id
|
||||||
svg
|
svg
|
||||||
title
|
title
|
||||||
excerpt
|
content
|
||||||
}
|
}
|
||||||
roadmap{
|
roadmap{
|
||||||
id
|
id
|
||||||
|
|||||||
Reference in New Issue
Block a user