corrections updated

This commit is contained in:
Selvi 2025-08-14 16:13:49 +05:30
parent b2f1053b75
commit b7a6798242
12 changed files with 25 additions and 15 deletions

View File

@ -21,7 +21,7 @@ const Error = (props) => {
<div className="error-message"> <div className="error-message">
<h3>Oops! Page Not Found!</h3> <h3>Oops! Page Not Found!</h3>
<p>Were sorry but we cant seem to find the page you requested. This might be because you have typed the web address incorrectly.</p> <p>Were sorry but we cant seem to find the page you requested. This might be because you have typed the web address incorrectly.</p>
<Link onClick={ClickHandler} href="/home" className="theme-btn"> Back to home</Link> <Link onClick={ClickHandler} href="/" className="theme-btn"> Back to home</Link>
</div> </div>
</div> </div>
</div> </div>

View File

@ -31,7 +31,7 @@ const BlogSection = () => {
<p> <p>
{blog.para} {blog.para}
</p> </p>
<Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Continue Reading</Link> <Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Know More</Link>
</div> </div>
</div> </div>
</div> </div>

View File

@ -32,7 +32,7 @@ const BlogSection = () => {
<p> <p>
{blog.para} {blog.para}
</p> </p>
<Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Continue Reading</Link> <Link className="more" onClick={ClickHandler} href={'/blog-single/[slug]'} as={`/blog-single/${blog.slug}`}>Know More</Link>
</div> </div>
</div> </div>
</div> </div>

View File

@ -31,7 +31,7 @@ const Footer = (props) => {
<h3>Quick Links</h3> <h3>Quick Links</h3>
</div> </div>
<ul> <ul>
<li><Link href="/home">Home</Link></li> <li><Link href="/">Home</Link></li>
<li><Link href="/about">About Us</Link></li> <li><Link href="/about">About Us</Link></li>
<li><Link href="/service">Services</Link></li> <li><Link href="/service">Services</Link></li>
<li><Link href="/our-approach">Our Approach</Link></li> <li><Link href="/our-approach">Our Approach</Link></li>
@ -113,7 +113,17 @@ const Footer = (props) => {
<div className="row text-center align-items-center"> <div className="row text-center align-items-center">
<div className="col col-lg-12 col-md-12 col-12"> <div className="col col-lg-12 col-md-12 col-12">
<ul> <ul>
<li>Copyright {new Date().getFullYear()} © Janahan Law. Powered by <a href="https://metatroncubesolutions.com/">MetatronCube</a>. All Right Reserved.{new Date().getFullYear()}</li> <li>
Copyright {new Date().getFullYear()} © Janahan Law. Powered by{' '}
<a
href="https://metatroncubesolutions.com/"
target="_blank"
rel="noopener noreferrer"
style={{ color: '#c12026' }}
>
MetatronCube
</a>. All Right Reserved.
</li>
</ul> </ul>
</div> </div>
{/* <div className="col col-lg-6 col-md-12 col-12"> {/* <div className="col col-lg-6 col-md-12 col-12">

View File

@ -36,12 +36,12 @@ const Header = (props) => {
<ul className="nav navbar-nav mb-2 mb-lg-0"> <ul className="nav navbar-nav mb-2 mb-lg-0">
<li className="menu-item-has-children"> <li className="menu-item-has-children">
<Link onClick={ClickHandler} href="/">Home</Link> <Link onClick={ClickHandler} href="/">Home</Link>
<ul className="sub-menu"> {/* <ul className="sub-menu">
<li><Link onClick={ClickHandler} href="/home">Main Home</Link></li> <li><Link onClick={ClickHandler} href="/home">Main Home</Link></li>
<li><Link onClick={ClickHandler} href="/home2">Election Home</Link></li> <li><Link onClick={ClickHandler} href="/home2">Election Home</Link></li>
<li><Link onClick={ClickHandler} href="/home3">Male Candidate</Link></li> <li><Link onClick={ClickHandler} href="/home3">Male Candidate</Link></li>
<li><Link onClick={ClickHandler} href="/home4">Female Candidate</Link></li> <li><Link onClick={ClickHandler} href="/home4">Female Candidate</Link></li>
</ul> </ul> */}
</li> </li>
<li><Link onClick={ClickHandler} href="/about">About us</Link></li> <li><Link onClick={ClickHandler} href="/about">About us</Link></li>
<li className="menu-item-has-children"> <li className="menu-item-has-children">

View File

@ -10,7 +10,7 @@ const PageTitle = (props) => {
<div className="wpo-breadcumb-wrap"> <div className="wpo-breadcumb-wrap">
<h2>{props.pageTitle}</h2> <h2>{props.pageTitle}</h2>
<ol className="wpo-breadcumb-wrap"> <ol className="wpo-breadcumb-wrap">
<li><Link href="/home">Home</Link></li> <li><Link href="/">Home</Link></li>
<li><span>{props.pagesub}</span></li> <li><span>{props.pagesub}</span></li>
</ol> </ol>
</div> </div>