37063-vm/trust.php
2025-12-21 17:14:25 +00:00

53 lines
2.1 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FinMox Security & Trust</title>
<!-- Tailwind CDN (AppWizzy-safe) -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body class="bg-warm">
<!-- TOP NAV -->
<header class="max-w-7xl mx-auto px-6 py-5">
<div class="flex items-center justify-between">
<div class="font-extrabold text-lg">FinMox</div>
<div class="hidden md:flex items-center gap-1 text-sm" id="nav-links">
<!-- Links will be injected by JS -->
</div>
<div class="md:hidden">
<button id="menu-button" class="p-2">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7" />
</svg>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden mt-4">
<!-- Mobile links will be injected by JS -->
</div>
</header>
<main class="max-w-7xl mx-auto p-6">
<section id="page-trust" class="page fade">
<h1 class="text-5xl font-semibold leading-tight mb-6">Security & Trust</h1>
</section>
</main>
<!-- FOOTER -->
<footer class="max-w-7xl mx-auto px-6 pb-16">
<div class="panel-strong p-6 flex flex-col md:flex-row md:items-center justify-between gap-4 text-sm text-gray-600">
<div>FinMox © 2025</div>
<div id="footer-links" class="flex flex-wrap gap-3">
<!-- Footer links will be injected by JS -->
</div>
</div>
</footer>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>