/home/moonrcjl/public_html/test/wp-content/themes/arsha/404.php
<?php
/**
 * The template for displaying 404 pages (not found)
 *
 * @link https://codex.wordpress.org/Creating_an_Error_404_Page
 *
 * @package arsha
 */
$error_thumb = get_theme_mod( 'error_thumb', get_template_directory_uri() . '/assets/img/error/thumb-1.png' );
$arsha_error_404 = get_theme_mod('arsha_error_404', __("404 ", 'arsha'));
$arsha_error_title = get_theme_mod('arsha_error_title', __("Sorry We Can't Find That Page! ", 'arsha'));
$arsha_error_text = get_theme_mod('arsha_error_text', __("Oops! The page you are looking for does not exist. It might have been moved or deleted. ", 'arsha'));
$arsha_error_link_text = get_theme_mod('arsha_error_link_text', __('Back To Home', 'arsha'));


get_header();
?>

<!-- error area start -->
<div class="mt-error-area pt-130 pb-130">
    <div class="container">
        <div class="row">
            <div class="col-xl-12">
                <div class="mt-error-content-box text-center">
                  <?php if(!empty($error_thumb)) : ?>
                    <div class="mt-error-thumb-box pb-75 wow img-custom-anim-top" data-wow-duration="1.5s"
                        data-wow-delay="0.3s">
                        <img src="<?php echo esc_attr($error_thumb); ?>" alt="">
                    </div>
                      <?php endif; ?>
                    <div class="mt-error-content">
                        <?php if(!empty($arsha_error_title)) : ?>
                        <h4 class="mt-error-title mt-upper"><?php echo arsha_kses($arsha_error_title) ?></h4>
                        <?php endif; ?>
                        <?php if(!empty($arsha_error_text)) : ?>
                        <p class="mb-40"><?php echo arsha_kses($arsha_error_text) ?></p>
                            <?php endif; ?>
                        <a href="<?php print esc_url(home_url('/'));?>"><span class="mt-btn"><?php print esc_html($arsha_error_link_text);?></span>
                            <span class="mt-btn mt-btn-icon"><i class="fa-solid fa-arrow-right"></i></span></a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<!-- error area end -->

<?php
get_footer();