35337-vm/index.php
Flatlogic Bot f1cd51e128 SOL LAUNCH
2025-10-29 19:44:51 +00:00

126 lines
6.2 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sol Launch</title>
<meta name="description" content="Securely launch your Solana meme coin. We provide a secure escrow and transparent platform for developers and investors.">
<meta name="keywords" content="solana, meme coin, crypto, launchpad, token launch, crypto launch, secure escrow, sol, blockchain, Built with Flatlogic Generator">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="Sol Launch">
<meta property="og:description" content="Securely launch your Solana meme coin. We provide a secure escrow and transparent platform for developers and investors.">
<meta property="og:image" content="">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Sol Launch">
<meta property="twitter:description" content="Securely launch your Solana meme coin. We provide a secure escrow and transparent platform for developers and investors.">
<meta name="twitter:image" content="">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light sticky-top">
<div class="container">
<a class="navbar-brand" href="#" style="font-weight: 700; color: #512DA8;">Sol Launch</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#features">Features</a></li>
<li class="nav-item"><a class="nav-link" href="#developer">For Developers</a></li>
<li class="nav-item"><a class="nav-link" href="#">Browse Coins</a></li>
</ul>
</div>
</div>
</nav>
<header class="hero">
<div class="container">
<h1 class="display-3">Launch Your Solana Meme Coin, Securely.</h1>
<p class="lead">A transparent, developer-first platform for launching the next generation of meme coins on Solana.</p>
<a href="#developer" class="btn btn-secondary btn-lg mt-3">Launch Your Coin</a>
</div>
</header>
<section id="features" class="section">
<div class="container text-center">
<h2 class="mb-5">Why Launch With Us?</h2>
<div class="row g-4">
<div class="col-md-4">
<div class="feature-card">
<i data-feather="shield" class="feature-icon"></i>
<h5>Secure Escrow</h5>
<p>Developer funds are held in a secure contract, withdrawable only by the platform owner, ensuring safety for early investors.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<i data-feather="eye" class="feature-icon"></i>
<h5>Transparent Audits</h5>
<p>All deposits and platform withdrawals are logged and publicly visible, building trust and accountability.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-card">
<i data-feather="zap" class="feature-icon"></i>
<h5>Instant Listing</h5>
<p>Once your project is approved, get listed on our platform immediately and gain visibility with investors.</p>
</div>
</div>
</div>
</div>
</section>
<section id="developer" class="section bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="developer-section text-center">
<h2>Become a Meme Coin Developer</h2>
<p class="lead">Ready to launch? Connect your wallet and deposit SOL to get started.</p>
<div class="mt-4">
<button id="connectWalletBtn" class="btn btn-primary btn-lg">Connect Wallet</button>
</div>
<div id="depositForm" class="mt-4 d-none">
<p id="walletInfo" class="text-muted"></p>
<p id="balanceInfo" class="fw-bold fs-5"></p>
<form class="row g-3 justify-content-center align-items-center">
<div class="col-auto">
<label for="solAmount" class="visually-hidden">SOL Amount</label>
<input type="number" class="form-control" id="solAmount" placeholder="SOL Amount">
</div>
<div class="col-auto">
<button id="depositBtn" type="submit" class="btn btn-primary">Deposit SOL</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="py-4 text-center text-muted">
<div class="container">
<p>&copy; <?php echo date("Y"); ?> Sol Launch. All Rights Reserved.</p>
</div>
</footer>
<div id="toast-container" class="toast-container"></div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
feather.replace();
</script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>