File: /home/rbrijwzv8p53/public_html/epicit.us/404.php
<?php
http_response_code(404);
$pageTitle = "Page Not Found";
$pageDesc = "The page you requested could not be found.";
$canonicalPath = "/404.php";
$activeNav = "";
include __DIR__ . "/includes/header.php";
?>
<main id="main">
<?php render_page_hero(
"404",
"That page could not be found.",
"The link may be outdated or the page may have been moved. Try one of the options below.",
[
["href" => "/index.php", "label" => "Home"],
["label" => "404"]
]
); ?>
<section class="section-shell">
<div class="container two-col">
<article class="surface-card reveal">
<h2>Useful links</h2>
<ul class="checklist">
<li><a href="/index.php">Return to the homepage</a></li>
<li><a href="/services.php">Browse services</a></li>
<li><a href="/contact.php">Contact Epic IT</a></li>
</ul>
</article>
<article class="callout reveal">
<p class="eyebrow">Need help?</p>
<h2>We can point you in the right direction.</h2>
<p>If you reached this page while looking for a specific service, contact us and we will help you find the right resource.</p>
<div class="hero-actions">
<a class="btn btn-secondary" href="/contact.php">Contact Us</a>
</div>
</article>
</div>
</section>
</main>
<?php include __DIR__ . "/includes/footer.php"; ?>