|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/techcare-services.com/bckp/ | |
|
Path: /home2/outerorb/techcare-services.com/bckp/404.php
Size: 3.33 KB
Permissions: 0666
<?php
/**
* TechCare Services - 404 Error Page
*/
// Include configuration
require_once 'config.php';
// Set 404 header
http_response_code(404);
// Page-specific SEO settings
$page_title = '404 - Page Not Found | TechCare Services';
$meta_description = 'The page you are looking for cannot be found. Return to TechCare Services homepage or contact us for assistance.';
$meta_keywords = 'error, 404, page not found';
$active_page = '';
// Include header
require_once INC_PATH . 'header.php';
?>
<div id="top"></div>
<section class="relative overflow-hidden" data-bgimage="url(<?php echo image('background/1.webp'); ?>) 100% top">
<div class="container">
<div class="row g-4 align-items-center">
<div class="col-lg-8 offset-lg-2 text-center">
<h1 class="display-1 wow fadeInUp" data-wow-delay=".2s">404</h1>
<h2 class="wow fadeInUp" data-wow-delay=".3s">Page Not Found</h2>
<p class="lead wow fadeInUp" data-wow-delay=".4s">Sorry, the page you are looking for doesn't exist or has been moved.</p>
<div class="mt-4 wow fadeInUp" data-wow-delay=".5s">
<a class="btn-main me-2 mb-2" href="<?php echo url(); ?>"><span>Go to Homepage</span></a>
<a class="btn-main btn-light mb-2" href="<?php echo url('contact.php'); ?>"><span>Contact Us</span></a>
</div>
</div>
</div>
</div>
<div class="gradient-edge-bottom light"></div>
</section>
<section>
<div class="container">
<div class="row g-4">
<div class="col-lg-8 offset-lg-2">
<h3 class="text-center mb-4">You might be interested in:</h3>
<div class="row g-4">
<div class="col-md-6">
<div class="bg-color-op-2 p-4 rounded-1 h-100">
<h5>Our Services</h5>
<p>Explore our comprehensive digital marketing and antivirus solutions.</p>
<a href="<?php echo url('services.php'); ?>" class="btn-main btn-sm"><span>View Services</span></a>
</div>
</div>
<div class="col-md-6">
<div class="bg-color-op-2 p-4 rounded-1 h-100">
<h5>About Us</h5>
<p>Learn more about TechCare Services and our expertise.</p>
<a href="<?php echo url('about.php'); ?>" class="btn-main btn-sm"><span>About Us</span></a>
</div>
</div>
</div>
<div class="text-center mt-5">
<p class="mb-3">Need help? Contact our support team:</p>
<p>
<a href="tel:<?php echo str_replace([' ', '(', ')', '-'], '', COMPANY_PHONE); ?>" class="text-dark fw-bold"><?php echo COMPANY_PHONE; ?></a> |
<a href="mailto:<?php echo COMPANY_EMAIL; ?>" class="text-dark fw-bold"><?php echo COMPANY_EMAIL; ?></a>
</p>
</div>
</div>
</div>
</div>
</section>
<?php
// Include footer
require_once INC_PATH . 'footer.php';
?>