<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name=viewport content="width=device-width, initial-scale=1.0">
<title>StackTrak - Coming Soon</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f7fc;
text-align: center;
padding: 50px;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #1a73e8;
}
p {
color: #555;
font-size: 18px;
}
.email-form {
margin-top: 20px;
}
input[type="email"] {
width: 80%;
padding: 12px;
margin-top: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
button {
background-color: #1a73e8;
color: white;
padding: 12px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #0f5db5;
}
.footer {
margin-top: 20px;
font-size: 14px;
color: #777;
}
</style>
</head>
<body>
<div class="container">
<h1>StackTrak</h1>
<p>Take control of your SaaS spend & user management.</p>
<p>Track costs, seats, and renewals in one place.</p>
<div class="email-form">
<input type="email" placeholder="Enter your email" required>
<button>Join the Waitlist</button>
</div>
<p class="footer">Launching Soon 🚀</p>
</div>
</body>
</html>