File: /mnt/data/ifa-wp/wp-content/themes/dreamsrent/404.php
<?php get_template_part( 'templates/header/header', 'none' ); ?>
<?php
$notFound = get_template_directory_uri().'/assets/images/404.png';
?>
<div class="main-wrapper">
<div class="error-box">
<img src="<?php echo esc_url($notFound); ?>" class="img-fluid" alt="Page not found">
<h3><?php echo esc_html__('Oops! Page not found!', 'dreamsrent'); ?></h3>
<p><?php echo esc_html__('The page you requested was not found.', 'dreamsrent'); ?></p>
<div class="back-button">
<a href="<?php echo esc_url(home_url('/')); ?>" class="btn btn-primary"><?php echo esc_html__('Back to Home', 'dreamsrent'); ?></a>
</div>
</div>
</div>
<?php get_template_part( 'templates/footer/footer', 'none' ); ?>