TOPVERSE_Official/components/Footer.vue

30 lines
748 B
Vue
Raw Normal View History

2023-05-04 17:42:22 +08:00
<script setup>
import { useFoot } from '~/config/use-foot'
const footer = useFoot()
</script>
2023-04-23 14:19:03 +08:00
<template>
2023-05-04 17:42:22 +08:00
<Divider />
2023-05-05 17:23:07 +08:00
<div class="grid-row p-20 pt-30 lg:(grid-cols-3) md:(grid-cols-2 px-30) xl:px-60">
2023-04-27 13:58:47 +08:00
<div
2023-05-04 17:42:22 +08:00
v-for="(col, i) in footer"
:key="i"
2023-05-05 17:23:07 +08:00
class="w-full flex flex-col items-center gap-8"
2023-05-04 17:42:22 +08:00
>
<h5 text-title opacity-60>
{{ $t(col.title) }}
</h5>
<NuxtLink v-for="(item, i) in col.child" :key="i" class="font-bold" :href="item.link.href">
{{ item.link.name }}
</NuxtLink>
</div>
</div>
2023-05-05 17:23:07 +08:00
<div my-10 flex items-center justify-center gap-4>
2023-05-04 17:42:22 +08:00
<BrandLogo />
© Copyright 2022 - 2023 LandVault · Wam Group · All rights reserved
<DarkToggle />
2023-04-23 14:19:03 +08:00
</div>
</template>