1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-19 23:59:35 +05:30
Files
neosubhamoy-portfolio/htdocs/error/404.php

41 lines
1.7 KiB
PHP

<?php
require 'core/vendor/autoload.php';
$dotenv = Dotenv\Dotenv::createImmutable('../');
$dotenv->load();
require 'core/connection.php';
require 'core/host_config.php';
require 'core/query_functions.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<title>Page Not Found - @neo_subhamoy</title>
<?php require 'assets/_integrate.php';?>
</head>
<body class="font-lexend bg-bg_primary text-accent_secondary">
<?php include 'assets/_preloader.php';?>
<?php include 'assets/_floatingbar.php';?>
<?php require 'assets/_header.php';?>
<div class="errorbox w-full px-4 lg:px-[4.5rem]">
<div class="mainsection w-full flex flex-col justify-center lg:flex-row items-center mt-28 lg:mt-20 mb-60">
<div class="bannerwrapper w-[250px] lg:w-[350px] lg:mr-5">
<img src="assets/images/error_banner.svg" alt="error-icon">
</div>
<div class="errortitle text-center lg:text-start mt-5 lg:mt-0 lg:ml-5 lg:max-w-[40%]">
<h1 class="text-accent_primary text-9xl">404</h1>
<h2 class="text-4xl">Page Not Found!</h2>
<p class="text-accent_three mt-7">The page you are looking for might have been removed had it's name changed or temporarily unavailable</p>
</div>
</div>
</div>
<?php require 'assets/_footer.php';?>
<script type="text/javascript" src="assets/js/preloader-config.js"></script>
<script type="text/javascript" src="assets/js/floatingbar-config.js"></script>
<script type="text/javascript" src="assets/js/keybinding-config.js"></script>
</body>
</html>