update content

This commit is contained in:
2021-11-03 20:11:27 +02:00
parent 0966e18ae7
commit 407873b189
6 changed files with 155 additions and 4 deletions

View File

@@ -0,0 +1,73 @@
<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">
<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"
>
<div
v-for="footersLink in record.items"
:key="footersLink.title"
class=""
>
<div>
<h2
class="
text-4xl
leading-5
py-6
font-extrabold
tracking-wider
capitalize
"
>
{{ footersLink.title }}
</h2>
<ul class="mt-4 space-y-5 footerslink">
<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
"
>
{{ item.name }}
</a>
<a
v-else
:href="item.link"
class="
text-2xl
leading-5
hover:text-gray-900
"
>
{{ item.name }}
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</template>
<script>
export default {
props: ["record"],
};
</script>
<style scoped>
ul {
list-style-type: none;
}
</style>