<template>
<footer class="site-footer">
<div
class="section-full p-t50 p-b20 bg-primary text-white overlay-primary-dark footer-info-bar"
>
<div class="container">
<div class="row">
<div
class="col-lg-3 col-md-6 col-sm-6 col-xs-6 mb-8 wow fadeInLeft"
data-wow-duration="2s"
data-wow-delay="0.3s"
>
<div class="icon-bx-wraper bx-style-1 p-5 radius-sm br-col-w1">
<div class="icon-content">
<h5 class="dlab-title">
<span class="icon-sm">
<i class="ti-location-pin" />
</span>
Company Address
</h5>
<p class="op7">
Demo address #8901 Marmora Road Chi Minh City, Vietnam
</p>
</div>
</div>
</div>
<div
class="col-lg-3 col-md-6 col-sm-6 col-xs-6 mb-8 wow fadeInUp"
data-wow-duration="2s"
data-wow-delay="0.3s"
>
<div class="icon-bx-wraper bx-style-1 p-5 radius-sm br-col-w1">
<div class="icon-content">
<h5 class="dlab-title">
<span class="icon-sm">
<i class="ti-email" />
</span>
E-mail
</h5>
<p class="m-b0 op7">
<a href="mailto:someone@example.com">info@example.com</a>
</p>
<p class="op7">
<a href="mailto:someone@example.com">company@example.com</a>
</p>
</div>
</div>
</div>
<div
class="col-lg-3 col-md-6 col-sm-6 col-xs-6 mb-8 wow fadeInDown"
data-wow-duration="2s"
data-wow-delay="0.3s"
>
<div class="icon-bx-wraper bx-style-1 p-5 radius-sm br-col-w1">
<div class="icon-content">
<h5 class="dlab-title">
<span class="icon-sm">
<i class="ti-mobile" />
</span>
Phone Numbers
</h5>
<p class="m-b0 op7">
Mobile : <a href="tel:+4733378901">+00 234 678 9012</a>
</p>
<p class="op7">
Phone : <a href="tel:+4733378901">+0 1234 5678 90</a>
</p>
</div>
</div>
</div>
<div
class="col-lg-3 col-md-6 col-sm-6 col-xs-6 mb-8 wow fadeInRight"
data-wow-duration="2s"
data-wow-delay="0.3s"
>
<div class="icon-bx-wraper bx-style-1 p-5 radius-sm br-col-w1">
<div class="icon-content">
<h5 class="dlab-title">
<span class="icon-sm">
<i class="ti-alarm-clock" />
</span>
Office Hours
</h5>
<p class="m-b0 op7">Mon To Sat - 08.00-18.00</p>
<p class="op7">Sunday - Close</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-top">
<div class="container">
<div class="row">
<div
class="col-lg-3 col-md-6 col-sm-12 wow fadeIn"
data-wow-delay="0.2s"
>
<div class="widget border-0">
<h6 class="mb-5 text-white font-weight-300 text-uppercase">
Quick Links
</h6>
<ul class="list-2">
<li v-for="(link, index) in footerLinks2" :key="index">
<nuxt-link :to="link.href">{{ link.label }}</nuxt-link>
</li>
</ul>
</div>
</div>
<div
class="col-lg-4 col-md-6 col-sm-12 wow fadeIn"
data-wow-delay="0.4s"
>
<div class="widget">
<h6 class="text-white font-weight-300 text-uppercase">
Newsletter
</h6>
<div class="subscribe-form form-white mb-5 mt-3">
<form class="dzSubscribe" @submit.prevent="handleSubmit">
<div class="dzSubscribeMsg" />
<div class="input-group">
<input
name="dzEmail"
required
class="form-control radius-no"
placeholder="Your Email Address"
type="email"
/>
<span class="input-group-btn">
<button
name="submit"
value="Submit"
type="submit"
class="site-button btnhover15 radius-no"
>
SEND
</button>
</span>
</div>
</form>
</div>
<h6 class="mb-2 text-white font-weight-300 text-uppercase">
Connect with us
</h6>
<ul class="list-inline m-0">
<li v-for="(link, index) in socialLinks" :key="index">
<a
:href="link.href"
:class="`site-button sharp ${link.className}`"
>
<i :class="link.iconClass" />
</a>
</li>
</ul>
</div>
</div>
<div
class="col-lg-5 col-md-12 col-sm-12 wow fadeIn"
data-wow-delay="0.6s"
>
<div
class="icon-bx-wraper bx-style-1 m-b15 p-a30 radius-sm br-col-w1 bg-tpw1"
>
<h5 class="text-white font-weight-300">
Serving in 70+ countries for web, software and mobile app
development
</h5>
<p>
United States (USA), United Kingdom (UK), Singapore, Kenya,
South Africa Germany, Canada, Australia, Netherlands, Norway,
United Arab Emirates (UAE) , Finland etc.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- footer bottom part -->
<div class="footer-bottom">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6 text-left">
<span>
Copyright ©
<span class="current-year">{{ new Date().getFullYear() }}</span>
<a href="https://dexignzone.com/" target="_blank"> DexignZone </a>
. all rights reserved.
</span>
</div>
<div class="col-md-6 col-sm-6 text-right">
<div class="widget-link">
<ul>
<li>
<nuxt-link to="/help-desk">Help Desk</nuxt-link>
</li>
<li>
<nuxt-link to="/privacy-policy">Refund Policy</nuxt-link>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
</template>
<script setup>
import { footerLinks2, socialLinks } from "@/data/footerLinks";
const handleSubmit = (e) => {
e.preventDefault();
// Handle form submission
};
</script>
<style scoped>
/* Add your scoped CSS here */
</style>