Inital commit

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 11:54:46 +02:00
commit b89887106d
7 changed files with 450 additions and 0 deletions

13
includes/functions.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
function includeHeader(string $pageTitle, string $pageDescription, string $currentPage = 'home'): void
{
include __DIR__ . '/header.php';
}
function includeFooter(): void
{
include __DIR__ . '/footer.php';
}