terminal warning issues are fixed

This commit is contained in:
akash 2025-11-10 18:36:37 +05:30
parent cf9258019b
commit 53a450503d
5 changed files with 12 additions and 11 deletions

View File

@ -89,7 +89,8 @@ const HeroBanner = () => {
<span className="sub-title">{slide.subtitle}</span> <span className="sub-title">{slide.subtitle}</span>
<h1 dangerouslySetInnerHTML={{ __html: slide.title }}></h1> <h1 dangerouslySetInnerHTML={{ __html: slide.title }}></h1>
<p>{slide.description}</p> <p>{slide.description}</p>
<Link href={slide.buttonLink} className="theme-btn mt-25" target={slide.buttonLink.startsWith("http") && index < 2 && "_blank"} > <Link href={slide.buttonLink} className="theme-btn mt-25"
target={slide.buttonLink.startsWith("http") && index < 2 ? "_blank" : undefined} >
{slide.buttonText} <i className="far fa-arrow-alt-right" /> {slide.buttonText} <i className="far fa-arrow-alt-right" />
</Link> </Link>
</div> </div>

View File

@ -113,7 +113,7 @@ const PopularMenu = () => {
))} ))}
</div> </div>
<div className="text-center mt-3"> <div className="text-center mt-3">
<a class="theme-btn style-two" href="/menu">View Full Menu <i class="far fa-arrow-alt-right"></i></a> <a className="theme-btn style-two" href="/menu">View Full Menu <i className="far fa-arrow-alt-right"></i></a>
</div> </div>
</div> </div>
<div className="menu-items-shape"> <div className="menu-items-shape">

View File

@ -9,7 +9,7 @@ const WellFoodLayout = ({ children, bgBlack, footer }) => {
useEffect(() => { useEffect(() => {
niceSelect(); niceSelect();
wellfoodUtility.animation(); wellfoodUtility.animation();
console.log(bgBlack); // console.log(bgBlack);
if (bgBlack) { if (bgBlack) {
document.querySelector(".page-wrapper").classList.add("bg-black"); document.querySelector(".page-wrapper").classList.add("bg-black");
} else { } else {

View File

@ -4900,7 +4900,7 @@ h6,
align-items: center; align-items: center;
-webkit-box-pack: start; -webkit-box-pack: start;
-ms-flex-pack: start; -ms-flex-pack: start;
justify-content: start; justify-content: flex-start;
} }
} }
@ -7473,7 +7473,7 @@ h6,
display: flex; display: flex;
-webkit-box-align: start; -webkit-box-align: start;
-ms-flex-align: start; -ms-flex-align: start;
align-items: start; align-items: flex-start;
} }
.about-btn-customer .theme-btn { .about-btn-customer .theme-btn {
@ -8227,7 +8227,7 @@ h6,
display: flex; display: flex;
-webkit-box-align: end; -webkit-box-align: end;
-ms-flex-align: end; -ms-flex-align: end;
align-items: end; align-items: flex-end;
} }
.food-menu-item.style-two .content h5 .title { .food-menu-item.style-two .content h5 .title {
@ -10827,7 +10827,7 @@ h6,
align-items: center; align-items: center;
-webkit-box-pack: start; -webkit-box-pack: start;
-ms-flex-pack: start; -ms-flex-pack: start;
justify-content: start; justify-content: flex-start;
text-transform: uppercase; text-transform: uppercase;
font-family: var(--heading-font); font-family: var(--heading-font);
} }

View File

@ -4825,7 +4825,7 @@ h6,
align-items: center; align-items: center;
-webkit-box-pack: start; -webkit-box-pack: start;
-ms-flex-pack: start; -ms-flex-pack: start;
justify-content: start; justify-content: flex-start;
} }
} }
@ -7308,7 +7308,7 @@ h6,
display: flex; display: flex;
-webkit-box-align: start; -webkit-box-align: start;
-ms-flex-align: start; -ms-flex-align: start;
align-items: start; align-items: flex-start;
} }
.about-btn-customer .theme-btn { .about-btn-customer .theme-btn {
@ -8052,7 +8052,7 @@ h6,
display: flex; display: flex;
-webkit-box-align: end; -webkit-box-align: end;
-ms-flex-align: end; -ms-flex-align: end;
align-items: end; align-items: flex-end;
} }
.food-menu-item.style-two .content h5 .title { .food-menu-item.style-two .content h5 .title {
@ -10575,7 +10575,7 @@ h6,
align-items: center; align-items: center;
-webkit-box-pack: start; -webkit-box-pack: start;
-ms-flex-pack: start; -ms-flex-pack: start;
justify-content: start; justify-content: flex-start;
text-transform: uppercase; text-transform: uppercase;
font-family: var(--heading-font); font-family: var(--heading-font);
} }