38698-vm/index.php
2026-02-22 23:15:12 +00:00

58 lines
2.0 KiB
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/db/config.php';
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Arc Prototype - Stark Industries</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;700;800&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?= time() ?>">
</head>
<body>
<div class="blueprint-grid"></div>
<svg id="backgroundSvg" class="background-svg"></svg>
<div class="blueprint-viewport">
<div class="main-container">
<!-- Unified Arc Keyboard -->
<div id="arcKeysContainer" class="arc-keys-wrapper">
<div class="arc-center-hub" id="arcCenterHub">
<div class="hub-label">STARK_OS</div>
</div>
<!-- All Arc keys injected by JS -->
</div>
<!-- Terminal Output positioned strategically -->
<div class="integrated-output">
<textarea id="outputArea" readonly placeholder=">> SYSTEM ONLINE. READY FOR INPUT."></textarea>
</div>
</div>
<!-- Interface Branding -->
<div class="branding branding-top-left">
STARK_IND_PROTOTYPE_MK.82
</div>
<div class="branding branding-bottom-right">
<span class="design-label">DESIGN BY EYEOFSURON</span>
<span class="system-time" id="systemTime">[ 00:00:00 ]</span>
</div>
<!-- Global Controls -->
<div class="global-controls">
<button id="saveBtn" class="control-btn">SYNC_CORE</button>
<button id="clearBtn" class="control-btn">FLUSH_BUF</button>
</div>
</div>
<script src="assets/js/main.js?v=<?= time() ?>"></script>
</body>
</html>