nav is in center, projects layout, home fixed

This commit is contained in:
2023-03-06 23:51:51 +01:00
parent e9e6d573dc
commit 8f1dc7e9a8
7 changed files with 164 additions and 74 deletions

View File

@ -68,17 +68,17 @@ if($prod) { ?>
?>
<section class="content">
<?php
$R = new Router();
$R->route('/', 'home');
$R->route('/home', 'home');
$R->route('/domu', 'home');
$R = null;
$R = new Router();
$R->route('/', 'home');
$R->route('/home', 'home');
$R->route('/domu', 'home');
$R = null;
?>
</section>
<footer>
<?php
require_once("./components/footer.php");
require_once("./components/footer.php");
?>
</footer>
</body>