/home/websdxuk/www/404.php
<?php
$currentPage = basename($_SERVER['PHP_SELF']);
$pageWithoutExtension = pathinfo($currentPage, PATHINFO_FILENAME);
$formattedPageName = ucwords(str_replace(['-', '_'], ' ', $pageWithoutExtension));
$pageTitle = ($pageWithoutExtension === 'index') ? 'Home | Website Builders Official' : $formattedPageName . ' | Website Builders Official';
$description = 'We are Website Builders Official, a USA web design and Development firm. We offer web design, Brand Development, website management, and web development';
$author = 'Website Builders Official'; // No spaces for consistency
$keywords = '';
$baseUrl = 'https://websitebuildersofficial.com/';
$canonicalUrl = ($pageWithoutExtension === 'index') ? $baseUrl : $baseUrl . $pageWithoutExtension;
$ogImageUrl = $baseUrl . 'assets/images/url-1630492961529.webp';
include(__DIR__ . '/header.php');
?>

<section class="home__about__sec pb-5 mb-5">
	<div class="container">
		<div class="row align-items-center">
			<div class="col-sm-6">
				<div class="about__img__hme">

					<img src="assets/images/home-about.webp" class="img-responsive" alt="About">

				</div>
			</div>
			<div class="col-sm-6">
				<div class="home__about__content">
					<h2>Page Not Found </h2>
				
					<div class="web___btn pt-3">
						<ul>
							<li><a href="./" onclick="onclickchatCall()">Back To Home</a></li>
							<li><a href="tel:+17372044979"><img src="assets/images/phone-icon.svg"
										class="img-reposnive text-black" alt="Phone">+1 (737) 204-4979</a></li>
						</ul>
					</div>
				</div>
			</div>
		</div>
	</div>
</section>


                





<?php include('./footer.php') ?>