<template>
<footer class="site-footer footer-full">
<div class="p-tb60 bg-black-1">
<div class="container">
<div class="row">
<div
class="col-md-6 text-md-start text-center footer-logo logo-white"
>
<img alt="" width="100" src="/images/logo-white.png" height="75" />
<p class="m-b0 m-t10">
Copyright ©
<span class="current-year">{{ new Date().getFullYear() }}</span>
<a href="https://dexignzone.com/" target="_blank"> DexignZone </a>
</p>
</div>
<div class="col-md-6 text-md-end text-center">
<div class="widget-link">
<ul>
<li
v-for="(link, index) in footerLinks2.slice(0, 5)"
:key="index"
>
<nuxt-link :to="link.href">{{ link.label }}</nuxt-link>
</li>
</ul>
</div>
<ul class="list-inline m-b0 m-t10">
<li v-for="(elm, i) in socialLinks.slice(0, 4)" :key="i">
<a href="#" :class="`site-button-link ${elm.className} hover`">
<i :class="elm.iconClass" />
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
</template>
<script setup>
import { footerLinks2, socialLinks } from "@/data/footerLinks";
</script>
<style scoped>
/* Add your styles here */
</style>