update cjages at developer page

This commit is contained in:
2021-11-03 21:56:11 +02:00
parent 407873b189
commit 8b9a0cb378
13 changed files with 63 additions and 29 deletions

View File

@@ -791,7 +791,6 @@
></div>
<a
v-if="brand.btnTxt"
target="_blank"
:href="brand.sourceUrl"
class="
inline-block

View File

@@ -1,7 +1,33 @@
<template>
<section class="bg-white">
<div class="max-w-screen-2xl mx-auto py-12 px-4 text-center sm:px-6 lg:py-16 lg:px-8">
<section>
<div
class="
max-w-screen-2xl
mx-auto
py-12
px-4
text-center
sm:px-6
lg:py-16 lg:px-8
"
>
<div v-if="main">
<h2
class="
lg:text-6xl
text-center
uppercase
mb-8
leading-none
font-normal font-heading
"
>
{{ main.title1 }}
<br />
<span class="font-bold">{{ main.title2 }}</span>
</h2>
</div>
<div class="xl:grid xl:grid-cols-3 mx-auto xl:gap-2">
<div
class="mt-12 grid md:grid-cols-3 sm:grid-cols-2 xl:mt-0 xl:col-span-3"
@@ -17,6 +43,7 @@
text-4xl
leading-5
py-6
ml-5
font-extrabold
tracking-wider
capitalize
@@ -25,28 +52,19 @@
{{ footersLink.title }}
</h2>
<ul class="mt-4 space-y-5 footerslink">
<li v-for="item in footersLink.links" :key="item.name">
<li v-for="item in footersLink.links" :key="item.name">
<a
v-if="item.link.includes('http')"
:href="item.link"
target="_blank"
class="
text-xl
mb-4
leading-5
hover:text-gray-900
"
class="text-2xl mb-4 leading-5 hover:text-gray-900"
>
{{ item.name }}
</a>
<a
v-else
:href="item.link"
class="
text-2xl
leading-5
hover:text-gray-900
"
class="text-2xl leading-5 hover:text-gray-900"
>
{{ item.name }}
</a>
@@ -62,7 +80,7 @@
<script>
export default {
props: ["record"],
props: ["id", "record", "main"],
};
</script>