grid brandpanel2

This commit is contained in:
samaradel
2021-09-19 12:53:57 +02:00
parent d6fda8b23f
commit 6432777087
5 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
---
id: grid_brandPanel2
title: INTERNET REIMAGINED
btnTxt: "See who's building on the Grid"
sourceUrl: '#'
image: internet_reimagine.jpg # src/assets/brandPanel/..
---
Any current and future digital workload can be hosted natively on ThreeFold with minimum migration including cloud alternatives, blockchains, IoT networks, decentralized organizations and applications

View File

@@ -12,4 +12,5 @@ solution_image:
button: Take Part button: Take Part
link: "#" link: "#"
brandPanel: grid_brandPanel brandPanel: grid_brandPanel
brandPanel2: grid_brandPanel2
--- ---

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

View File

@@ -420,7 +420,6 @@
text-sm text-sm
learn-button learn-button
hover:bg-gray-400 hover:bg-gray-400
bo
px-12 px-12
py-1 py-1
mr-5 mr-5
@@ -434,10 +433,49 @@
</div> </div>
</div> </div>
<div class="lg:w-1/2 px-2"> <div class="lg:w-1/2 px-2">
<g-image class="mx-auto" :src="image" :alt="brand.title" /> <g-image class="mx-auto w-3/4" :src="image" :alt="brand.title" />
</div> </div>
</div> </div>
<div
v-else-if="id == 'grid' && brandPanel2"
class="flex flex-wrap lg:text-left lg:pt-16 px-4"
>
<div class="lg:w-1/2 px-2 self-center">
<g-image class="mx-auto" :src="image" :alt="brand.title" />
</div>
<div class="lg:w-1/2 px-2 lg:mt-10 order-1 lg:order-none">
<div class="px-10 lg:self-center">
<h2 class="lg:text-6xl mb-8 uppercase leading-none font-heading">
{{ brand.title }}
</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-white
text-sm
learn-button
hover:bg-gray-400
px-12
py-1
mr-5
mb-4
border-2
shadow
border-black
"
>{{ brand.btnTxt }}</a
>
</div>
</div>
</div>
<div <div
v-else v-else
class=" class="

View File

@@ -331,6 +331,8 @@
brandPanel2{ brandPanel2{
id id
title title
btnTxt
sourceUrl
content content
image image
} }