37279-vm/index.php
Flatlogic Bot 61418b7dda IV 2
2026-01-05 22:11:15 +00:00

137 lines
8.2 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO & Meta -->
<title>Investa - Premium Investment Platform</title>
<meta name="description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Securely grow your wealth with our tailored investment plans. Join thousands of investors achieving their financial goals.'); ?>">
<meta property="og:title" content="Investa - Premium Investment Platform">
<meta property="og:description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Securely grow your wealth with our tailored investment plans. Join thousands of investors achieving their financial goals.'); ?>">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
<meta property="og:url" content="/">
<meta name="twitter:card" content="summary_large_image">
<!-- Fonts & Icons -->
<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=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<!-- Styles -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
</head>
<body>
<!-- Header -->
<nav class="navbar navbar-expand-lg navbar-dark sticky-top">
<div class="container">
<a class="navbar-brand fw-bold" href="#">Investa</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mainNav" aria-controls="mainNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="mainNav">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link active" href="#">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#plans">Investment Plans</a></li>
<li class="nav-item"><a class="nav-link" href="#">About Us</a></li>
<li class="nav-item"><a class="nav-link" href="#">How It Works</a></li>
<li class="nav-item"><a class="nav-link" href="#">Contact</a></li>
</ul>
<div class="d-flex">
<a href="#" class="btn btn-outline-light me-2">Login</a>
<a href="#" class="btn btn-gold">Create Account</a>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<h1 class="display-4 mb-4">Invest in Your Future. <span class="text-warning">Securely.</span></h1>
<p class="lead mb-5">Join a new generation of investors building long-term wealth. Our platform provides the tools and expertise you need to reach your financial goals.</p>
<a href="#plans" class="btn btn-gold btn-lg">Start Investing Today</a>
</div>
</div>
</div>
</section>
<!-- Investment Plans Section -->
<section id="plans" class="py-5">
<div class="container">
<h2 class="text-center section-title">Choose Your Investment Plan</h2>
<div class="row">
<!-- Starter Plan -->
<div class="col-lg-4 mb-4">
<div class="plan-card">
<div class="plan-name">Starter</div>
<div class="plan-price mb-3">$500 <span class="text-muted fs-6">Min. Deposit</span></div>
<p class="plan-description mb-4">Ideal for beginners looking to get started with a diversified, low-risk portfolio.</p>
<ul class="list-group list-group-flush mb-4">
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Automated Portfolio</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Basic Risk Management</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Email Support</li>
</ul>
<a href="#" class="btn btn-outline-light">Invest Now</a>
</div>
</div>
<!-- Growth Plan -->
<div class="col-lg-4 mb-4">
<div class="plan-card border-warning">
<div class="plan-name">Growth</div>
<div class="plan-price mb-3">$5,000 <span class="text-muted fs-6">Min. Deposit</span></div>
<p class="plan-description mb-4">For serious investors aiming for higher returns with managed, strategic assets.</p>
<ul class="list-group list-group-flush mb-4">
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> All Starter Features</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Advanced Analytics</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Priority Support</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> ROI Projections*</li>
</ul>
<a href="#" class="btn btn-gold">Invest Now</a>
</div>
</div>
<!-- Premium Plan -->
<div class="col-lg-4 mb-4">
<div class="plan-card">
<div class="plan-name">Premium</div>
<div class="plan-price mb-3">$25,000 <span class="text-muted fs-6">Min. Deposit</span></div>
<p class="plan-description mb-4">Exclusive access for high-net-worth individuals, including personalized advisory.</p>
<ul class="list-group list-group-flush mb-4">
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> All Growth Features</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Dedicated Advisor</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Custom Strategies</li>
<li class="list-group-item"><i class="bi bi-check-circle-fill text-success me-2"></i> Direct Market Access</li>
</ul>
<a href="#" class="btn btn-outline-light">Contact Us</a>
</div>
</div>
</div>
<div class="text-center mt-4">
<small class="text-muted">*ROI projections are estimates and not guaranteed returns. All investments carry risk.</small>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer text-center">
<div class="container">
<p class="mb-0">&copy; <?php echo date("Y"); ?> Investa. All Rights Reserved.</p>
<p><a href="#">Privacy Policy</a> &middot; <a href="#">Terms of Service</a> &middot; <a href="#">Risk Disclosure</a></p>
</div>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>