35890-vm/index.php
2025-11-21 21:40:28 +00:00

73 lines
3.8 KiB
PHP

<?php require_once 'includes/header.php'; ?>
<header class="hero-section text-white text-center">
<div class="container">
<h1 class="display-4 fw-bold">The Private Browser with a Chat Soul.</h1>
<p class="lead my-4">Experience a new way to browse. Fast, secure, and with a revolutionary integrated chat right at your fingertips.</p>
<a href="#subscribe" class="btn btn-primary btn-lg rounded-pill">Join the Waitlist</a>
</div>
</header>
<main>
<section id="features" class="py-5">
<div class="container text-center">
<h2 class="mb-5">Why Daemon Lupus?</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm border-0">
<div class="card-body">
<i class="bi bi-shield-lock-fill display-3 text-primary"></i>
<h3 class="h4 my-3">Ultimate Privacy</h3>
<p class="text-muted">Block trackers, ads, and fingerprinting by default. Your data is yours alone.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm border-0">
<div class="card-body">
<i class="bi bi-chat-dots-fill display-3 text-primary"></i>
<h3 class="h4 my-3">Integrated Chat</h3>
<p class="text-muted">Chat with friends or communities directly in your browser. Secure and seamless.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 shadow-sm border-0">
<div class="card-body">
<i class="bi bi-speedometer2 display-3 text-primary"></i>
<h3 class="h4 my-3">Blazing Speed</h3>
<p class="text-muted">A lightweight core and smart resource management make for a faster web.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="subscribe" class="py-5 bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6 text-center">
<h2>Get Early Access</h2>
<p class="lead text-muted mb-4">Be the first to know when Daemon Lupus is ready. No spam, we promise.</p>
<?php if ($subscribe_message): ?>
<div class="alert alert-<?php echo htmlspecialchars($subscribe_message_type, ENT_QUOTES, 'UTF-8'); ?>" role="alert">
<?php echo htmlspecialchars($subscribe_message, ENT_QUOTES, 'UTF-8'); ?>
</div>
<?php endif; ?>
<form id="subscribe-form" method="POST" action="index.php#subscribe">
<div class="input-group mb-3">
<input type="email" name="email" id="email-input" class="form-control form-control-lg" placeholder="Enter your email" required>
<button class="btn btn-primary" type="submit">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<?php require_once 'includes/footer.php'; ?>