Brand panel3 sec
This commit is contained in:
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
id: about_brandPanel
|
id: about_brandPanel
|
||||||
title: A DIGITAL INFRASTRUCTURE SUPPORTING AN INTERCONNECTED WORLD
|
title: A DIGITAL INFRASTRUCTURE SUPPORTING AN INTERCONNECTED WORLD
|
||||||
subtitle:
|
|
||||||
sourceUrl: ''
|
|
||||||
btnTxt:
|
|
||||||
image: about_globe.png # src/assets/brandPanel/..
|
image: about_globe.png # src/assets/brandPanel/..
|
||||||
---
|
---
|
||||||
Internet access is a human right and represents the biggest source of information and communication. Our technology was designed to scale to anywhere electricity and bandwidth can be found to meet local digital infrastructure needs, especially the global south, to empower the unconnected and support a shared vision of an interconnected world.
|
Internet access is a human right and represents the biggest source of information and communication. Our technology was designed to scale to anywhere electricity and bandwidth can be found to meet local digital infrastructure needs, especially the global south, to empower the unconnected and support a shared vision of an interconnected world.
|
||||||
@@ -1,9 +1,6 @@
|
|||||||
---
|
---
|
||||||
id: about_brandPanel2
|
id: about_brandPanel2
|
||||||
title: OUR CUTTING-EDGE TECHNOLOGY ALLOWS PEOPLE TO OWN THEIR DATA
|
title: OUR CUTTING-EDGE TECHNOLOGY ALLOWS PEOPLE TO OWN THEIR DATA
|
||||||
subtitle:
|
|
||||||
sourceUrl: ''
|
|
||||||
btnTxt:
|
|
||||||
image: about_logos.png # src/assets/brandPanel/..
|
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.
|
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.
|
||||||
|
|||||||
6
content/page/about-us/brandPanel3/index.md
Normal file
6
content/page/about-us/brandPanel3/index.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
id: about_brandPanel3
|
||||||
|
title: OUR VALUES INFORM EVERYTHING, WHO WE ARE AND WHAT WE DO
|
||||||
|
image: about_value.png # src/assets/brandPanel/..
|
||||||
|
---
|
||||||
|
By making our technology actionable, we enable a collective approach to have an impact together. We unify our practices, partnerships, and products around a single mission - empowering humanity and regenerating our planet. We commit to be carbon negative by 2022.
|
||||||
@@ -389,6 +389,7 @@ module.exports = {
|
|||||||
inTheNews: 'InTheNews',
|
inTheNews: 'InTheNews',
|
||||||
brandPanel: 'BrandPanel',
|
brandPanel: 'BrandPanel',
|
||||||
brandPanel2: 'BrandPanel2',
|
brandPanel2: 'BrandPanel2',
|
||||||
|
brandPanel3: 'BrandPanel3',
|
||||||
partenershipsMain: 'PartenershipsMain',
|
partenershipsMain: 'PartenershipsMain',
|
||||||
partnerships: 'Partenerships',
|
partnerships: 'Partenerships',
|
||||||
stats: 'Stats',
|
stats: 'Stats',
|
||||||
|
|||||||
BIN
src/assets/images/brandPanel/about_value.png
Normal file
BIN
src/assets/images/brandPanel/about_value.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="">
|
<div :class="{ 'bg-about': id == 'about-us' && brandPanel3 }">
|
||||||
<div class="max-w-screen-xl mx-auto py-10">
|
<div class="max-w-screen-xl mx-auto py-10">
|
||||||
<!-- token -->
|
<!-- token -->
|
||||||
<div
|
<div
|
||||||
@@ -253,7 +253,7 @@
|
|||||||
|
|
||||||
<!-- About us -->
|
<!-- About us -->
|
||||||
<div
|
<div
|
||||||
v-else-if="id == 'about-us' && !brandPanel2"
|
v-else-if="id == 'about-us' && !brandPanel2 && !brandPanel3"
|
||||||
class="flex flex-wrap text-left"
|
class="flex flex-wrap text-left"
|
||||||
>
|
>
|
||||||
<div class="lg:w-1/2 px-2 self-center">
|
<div class="lg:w-1/2 px-2 self-center">
|
||||||
@@ -343,6 +343,50 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
v-else-if="id == 'about-us' && brandPanel3"
|
||||||
|
class="flex flex-wrap lg:text-left lg:pt-16 px-4"
|
||||||
|
>
|
||||||
|
<div class="lg:w-1/2 px-2 self-center">
|
||||||
|
<g-image :src="image" :alt="brand.title" />
|
||||||
|
</div>
|
||||||
|
<div class="lg:w-1/2 px-2 lg:mt-10 order-1 lg:order-none">
|
||||||
|
<div class="lg:self-center">
|
||||||
|
<h2 class="text-3xl mb-8 uppercase leading-none font-heading">
|
||||||
|
<span class="block">{{ brand.title }}</span>
|
||||||
|
<span class="block" v-if="brand.subtitle">{{
|
||||||
|
brand.subtitle
|
||||||
|
}}</span>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
class="pb-6 text-gray-900 text-2xl leading-tight tracking-wide"
|
||||||
|
v-html="brand.content"
|
||||||
|
></div>
|
||||||
|
<a
|
||||||
|
v-if="brand.btnTxt"
|
||||||
|
target="_blank"
|
||||||
|
:href="brand.sourceUrl"
|
||||||
|
class="
|
||||||
|
inline-block
|
||||||
|
bg-gray-900
|
||||||
|
text-2xl
|
||||||
|
learn-button
|
||||||
|
hover:bg-gray-800
|
||||||
|
text-gray-100
|
||||||
|
px-16
|
||||||
|
py-1
|
||||||
|
mb-4
|
||||||
|
shadow
|
||||||
|
rounded-full
|
||||||
|
tft_subtitle
|
||||||
|
tracking-widev
|
||||||
|
"
|
||||||
|
>{{ brand.btnTxt }}</a
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
v-else
|
v-else
|
||||||
class="
|
class="
|
||||||
@@ -411,7 +455,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
props: ["brand", "id", "brandPanel2"],
|
props: ["brand", "id", "brandPanel2", "brandPanel3"],
|
||||||
computed: {
|
computed: {
|
||||||
image() {
|
image() {
|
||||||
return this.brand.image.src
|
return this.brand.image.src
|
||||||
@@ -423,7 +467,9 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.whybrand {
|
.bg-about {
|
||||||
background-image: linear-gradient(#c2aeef, #82f3fe);
|
background: #70dfc9;
|
||||||
|
background: -webkit-linear-gradient(to right, #70dfc9, #ea1ff7);
|
||||||
|
background: linear-gradient(to right, #70dfc9, #ea1ff7);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -35,6 +35,12 @@
|
|||||||
v-if="$page.markdownPage.brandPanel2"
|
v-if="$page.markdownPage.brandPanel2"
|
||||||
:brandPanel2="true"
|
:brandPanel2="true"
|
||||||
/>
|
/>
|
||||||
|
<BrandPanel
|
||||||
|
:id="$page.markdownPage.id"
|
||||||
|
:brand="$page.markdownPage.brandPanel3"
|
||||||
|
v-if="$page.markdownPage.brandPanel3"
|
||||||
|
:brandPanel3="true"
|
||||||
|
/>
|
||||||
<!-- <CustomCTA
|
<!-- <CustomCTA
|
||||||
:header="true"
|
:header="true"
|
||||||
:image="$page.markdownPage.pageHeader.image"
|
:image="$page.markdownPage.pageHeader.image"
|
||||||
@@ -411,19 +417,19 @@
|
|||||||
brandPanel{
|
brandPanel{
|
||||||
id
|
id
|
||||||
title
|
title
|
||||||
subtitle
|
|
||||||
content
|
content
|
||||||
sourceUrl
|
|
||||||
btnTxt
|
|
||||||
image
|
image
|
||||||
}
|
}
|
||||||
brandPanel2{
|
brandPanel2{
|
||||||
id
|
id
|
||||||
title
|
title
|
||||||
subtitle
|
|
||||||
content
|
content
|
||||||
sourceUrl
|
image
|
||||||
btnTxt
|
}
|
||||||
|
brandPanel3{
|
||||||
|
id
|
||||||
|
title
|
||||||
|
content
|
||||||
image
|
image
|
||||||
}
|
}
|
||||||
partenershipsMain{
|
partenershipsMain{
|
||||||
|
|||||||
Reference in New Issue
Block a user