35632-vm/product.php
2025-12-17 05:08:27 +00:00

45 lines
1.6 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Product - FinMox</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
</style>
</head>
<body class="bg-white text-gray-900">
<!-- NAV -->
<header class="max-w-7xl mx-auto px-6 py-5 flex items-center justify-between">
<div class="font-bold text-xl">FinMox</div>
<nav class="hidden md:flex gap-8 text-sm">
<a href="index.php">Home</a>
<a href="product.php">Product</a>
<a href="services.php">Services</a>
<a href="features.php">Features</a>
<a href="pricing.php">Pricing</a>
</nav>
<div class="flex gap-3">
<a href="login.php" class="text-sm flex items-center">Sign In</a>
<a href="register.php" class="bg-black text-white text-sm px-4 py-2 rounded-lg">Sign Up</a>
</div>
</header>
<!-- CONTENT -->
<section class="max-w-7xl mx-auto px-6 py-24 text-center">
<h1 class="text-4xl md:text-6xl font-extrabold leading-tight">Product</h1>
<p class="mt-6 max-w-2xl mx-auto text-gray-600">This is the Product page. Content will be added soon.</p>
</section>
<!-- FOOTER -->
<footer class="max-w-7xl mx-auto px-6 py-12 text-center text-gray-500 text-sm">
&copy; 2025 FinMox. All rights reserved.
</footer>
</body>
</html>