<?php
declare(strict_types=1);

$html = file_get_contents(__DIR__ . '/index.html');
if ($html === false) {
    http_response_code(500);
    exit;
}


echo $html;
