/home/websdxuk/public_html/footer.php
<!-- footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="footer_info">
<img src="assets/images/logo-white.svg" alt="">
<p>A creative tech force delivering standout websites, custom apps, and seamless e-commerce
experiences.</p>
<!--<div class="social_media_links">-->
<!-- <h4>Follow Us</h4>-->
<!-- <ul>-->
<!-- <li><a href="javascript:;"><i class="fa-brands fa-youtube fa-fw"></i></a></li>-->
<!-- <li><a href="javascript:;"><i-->
<!-- class="fa-brands fa-facebook-f"></i></a></li>-->
<!-- <li><a href="javascript:;"><i-->
<!-- class="fa-brands fa-instagram"></i></a></li>-->
<!-- <li><a href="javascript:;"><i-->
<!-- class="fa-brands fa-linkedin-in"></i></a></li>-->
<!-- <li><a href="javascript:;"><i class="fa-brands fa-pinterest"></i></a></li>-->
<!-- </ul>-->
<!--</div>-->
</div>
</div>
<div class="col-lg-6 col-md-8">
<div class="row justify-content-end">
<div class="col-lg-4 col-md-6">
<div class="footer_links">
<h4>Quick Links</h4>
<ul>
<li><a href="./">Home </a></li>
<li><a href="about-us">About </a></li>
<li><a href="showcase">Portfolio</a></li>
<li><a href="contact-us">Contact</a></li>
<li><a href="privacy-policy">Privacy Policy</a></li>
<li><a href="terms-and-condition">Terms & Conditions</a></li>
</ul>
</div>
</div>
<div class="col-lg-7 col-md-6">
<div class="footer_links">
<h4>Services</h4>
<ul>
<li><a href="custom-website-development">Web Design Development</a></li>
<li><a href="wordpress-development">WordPress Development</a></li>
<li><a href="shopify-development">Shopify Development</a></li>
<li><a href="web-portal">Web Portal</a></li>
<li><a href="ecommerce-development">Ecommerce Development</a></li>
<li><a href="digital-marketing">Digital Marketing</a></li>
<li><a href="seo">Seo Marketing</a></li>
<li><a href="social-media-marketing">Social Media Marketing</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-12">
<div class="footer_contact">
<h4>Contact details </h4>
<ul>
<li class="algnsetup"><span>Call Us:</span><span class="sdgt"><a
href="tel:+17372044979">+1 (737) 204-4979</a></span></li>
<li><span>Email Us:</span><a
href="mailto:info@websitebuildersofficial.com"
>info@websitebuildersofficial.com</span></a>
</li>
<li><span>Mailing Address:</span><a href="javascript:;">5900 Balcones Dr STE 100, Austin, TX, 78731, USA</a></li>
</ul>
<img src="assets/images/payment.webp" alt="img" class="mt-3">
</div>
</div>
</div>
</div>
<div class="social_media_links">
<p>© 2025 Website Builders Official. All rights reserved.</p>
</div>
</footer>
<!-- footer -->
<?php include('./include/modal.php')?>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="assets/js/slick.js"></script>
<script src="assets/js/slick.min.js"></script>
<script src="assets/js/jquery.slicknav.js"></script>
<script src="assets/js/fancybox.js"></script>
<script src="assets/js/bootstrap.js"></script>
<!-- <script src="assets/js/font.js"></script> -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="assets/js//jquery.validate.min.js"></script>
<script src="assets/js/custom.js"></script>
<script>
window.__lc = window.__lc || {};
window.__lc.license = 19222395;
window.__lc.integration_name = "manual_channels";
window.__lc.product_name = "livechat";;
(function (n, t, c) {
function i(n) {
return e._h ? e._h.apply(null, n) : e._q.push(n)
}
var e = {
_q: [],
_h: null,
_v: "2.0",
on: function () {
i(["on", c.call(arguments)])
},
once: function () {
i(["once", c.call(arguments)])
},
off: function () {
i(["off", c.call(arguments)])
},
get: function () {
if (!e._h) throw new Error("[LiveChatWidget] You can't use getters before load.");
return i(["get", c.call(arguments)])
},
call: function () {
i(["call", c.call(arguments)])
},
init: function () {
var n = t.createElement("script");
n.async = !0, n.type = "text/javascript", n.src = "https://cdn.livechatinc.com/tracking.js", t.head.appendChild(n)
}
};
!n.__lc.asyncInit && e.init(), n.LiveChatWidget = n.LiveChatWidget || e
}(window, document, [].slice));
// Initialize chat state variable
var isLiveChatOpen = localStorage.getItem('liveChatOpen') === 'true' || false;
document.querySelectorAll(".chat").forEach(function (element) {
element.addEventListener("click", function (e) {
toggleLiveChat();
});
});
function toggleLiveChat() {
if (typeof LiveChatWidget !== 'undefined') {
if (isLiveChatOpen) {
LiveChatWidget.call('minimize');
} else {
LiveChatWidget.call('maximize');
}
isLiveChatOpen = !isLiveChatOpen;
localStorage.setItem('liveChatOpen', isLiveChatOpen);
} else {
console.log("LiveChatWidget not loaded yet");
}
}
function maximizeChat() {
if (typeof LiveChatWidget !== "undefined") {
LiveChatWidget.call("maximize");
console.log("🔓 Chat Maximized!");
isLiveChatOpen = true;
localStorage.setItem('liveChatOpen', true);
} else {
console.log("❌ LiveChatWidget not loaded yet.");
}
}
function onNewEvent(event) {
switch (event.type) {
case "message":
case "rich_message":
case "file":
maximizeChat();
break;
default:
break;
}
}
// Initialize LiveChat listeners when DOM is ready
document.addEventListener("DOMContentLoaded", function () {
var checkLiveChat = setInterval(function () {
if (typeof LiveChatWidget !== "undefined" && LiveChatWidget.on) {
console.log("✅ LiveChat API Loaded! Listening for new messages...");
clearInterval(checkLiveChat);
LiveChatWidget.on("new_event", onNewEvent);
LiveChatWidget.on("customer_message", function (data) {
console.log("📨 Customer sent a message!", data);
maximizeChat();
});
// Initialize chat state based on localStorage
isLiveChatOpen = localStorage.getItem('liveChatOpen') === 'true' || false;
}
}, 500);
});
</script>
<noscript><a href="https://www.livechat.com/chat-with/19222395/" rel="nofollow">Chat with us</a>, powered by <a
href="https://www.livechat.com/?welcome" rel="noopener nofollow" target="_blank">LiveChat</a></noscript>
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/244182223.js?v=1.0.4"></script>
<!-- End of HubSpot Embed Code -->
</body>
</html>