Commit b14a6df3 by gaurav

number change and mobile menu change

1 parent 5c730a76
...@@ -52,11 +52,11 @@ const ContactInfo = () => { ...@@ -52,11 +52,11 @@ const ContactInfo = () => {
{/* <h3>Landline & Mobile</h3> */} {/* <h3>Landline & Mobile</h3> */}
<p> <p>
<span>Call:</span> <span>Call:</span>
<a href="tel:08204200985">+91-0820-4200-985</a> <a href="tel: 8204200985"> 0820-4200-985</a>
</p> </p>
<p> <p>
<span>Call:</span> <span>Call:</span>
<a href="tel:+9108026719484">+91-080-2671-9484</a> <a href="tel:8026719484">080-2671-9484</a>
</p> </p>
</div> </div>
</div> </div>
......
...@@ -119,15 +119,15 @@ const Footer = () => { ...@@ -119,15 +119,15 @@ const Footer = () => {
<li> <li>
<span> <i className="ri-phone-line"></i></span> <span> <i className="ri-phone-line"></i></span>
<a href="tel:+91-8204200985"> <a href="tel:8204200985">
+91-0820-4200-985 0820-4200-985
</a> </a>
</li> </li>
<li> <li>
<span> <i className="ri-phone-line"></i></span> <span> <i className="ri-phone-line"></i></span>
<a href="tel:+91-08026719484"> <a href="tel:8026719484">
+91-0802-6719-484 080-2671-9484
</a> </a>
</li> </li>
<li> <li>
......
...@@ -129,23 +129,26 @@ export default function MobileHamburger() { ...@@ -129,23 +129,26 @@ export default function MobileHamburger() {
<li> <li>
<button <button
className="mobile-dropdown-btn" className="mobile-dropdown-btn"
onClick={() => handleDropdown("clientservicing")}
aria-expanded={openDropdown === "clientservicing"}
> >
Client Servicing <a href="/client-servicing">
<span className={`arrow${openDropdown === "clientservicing" ? " open" : ""}`}></span> Client Servicing
</a>
<span className={`arrow${openDropdown === "clientservicing" ? " open" : ""}`}
onClick={() => handleDropdown("clientservicing")}
aria-expanded={openDropdown === "clientservicing"}></span>
</button> </button>
<ul className={`mobile-dropdown${openDropdown === "clientservicing" ? " show" : ""}`}> <ul className={`mobile-dropdown${openDropdown === "clientservicing" ? " show" : ""}`}>
{clientServices.map((service, idx) => ( {clientServices.map((service, idx) => (
<li key={service.title}> <li key={service.title}>
<button <button
className="mobile-dropdown-btn inner" className="mobile-dropdown-btn inner"
onClick={() => handleClientService(idx)}
aria-expanded={openClientService === idx}
> >
{service.title} <a href={service?.href} className="p-0">
{service.title}
</a>
{service.items.length > 0 && ( {service.items.length > 0 && (
<span className={`arrow${openClientService === idx ? " open" : ""}`}></span> <span className={`arrow${openClientService === idx ? " open" : ""}`} onClick={() => handleClientService(idx)}
aria-expanded={openClientService === idx}></span>
)} )}
</button> </button>
{service.items.length > 0 && ( {service.items.length > 0 && (
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!