<?php
$currentPage = basename($_SERVER['PHP_SELF']);
$pageWithoutExtension = pathinfo($currentPage, PATHINFO_FILENAME);
$formattedPageName = ucwords(str_replace(['-', '_'], ' ', $pageWithoutExtension));
$pageTitle = ($pageWithoutExtension === 'index') ? 'Home | Nex GenIT Solutions' : $formattedPageName . ' | Nex GenIT Solutions';
$description = 'We are Nex GenIT Solutions, a USA web design and Development firm. We offer web design, Brand Development, website management, and web development';
$author = 'Nex GenIT Solutions'; // No spaces for consistency
$keywords = '';
$baseUrl = 'https://nexgenitsolutions.online/';
$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:+8042089810"><img src="assets/images/phone-icon.svg"
class="img-reposnive text-black" alt="Phone">+(804) 208-9810</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<?php include('./footer.php') ?>