Files
usbcheck.it/public/index.php
2025-12-03 00:04:25 +01:00

25 lines
757 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
$pageKey = 'main';
$GLOBALS['pageKey'] = $pageKey;
require_once dirname(__DIR__) . '/config/fileload.php';
// User-Dummy (später über Login ersetzen)
$userInitials = null;
// Seitentitel & Description für das Layout
$pageTitle = app_primary_domain() . ' Test USB-Sticks';
$pageDescription = 'Prüfe deine USB-Sticks auf Geschwindigkeit, Integrität und mögliche Fakes direkt im Browser.';
tpl('layout_start'); // structure/header.php
tpl('hero', 'landing', 'main');
tpl('how', 'landing', 'main');
tpl('problem', 'landing', 'main');
tpl('features', 'landing', 'main');
tpl('security', 'landing', 'main');
tpl('faq', 'landing', 'main');
tpl('layout_end'); // structure/footer.php