17-vm/index.php
Flatlogic Bot 019834cdd5 initial
2026-02-08 13:48:45 +00:00

213 lines
12 KiB
PHP

<?php
require_once __DIR__ . '/db/config.php';
$project_name = $_SERVER['PROJECT_NAME'] ?? 'SMM Pro Agency';
$project_description = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Elevate your social media presence with data-driven strategies and creative content.';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($project_name); ?></title>
<meta name="description" content="<?php echo htmlspecialchars($project_description); ?>">
<!-- Bootstrap 5 CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<!-- Google Fonts: Inter -->
<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=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg sticky-top">
<div class="container">
<a class="navbar-brand" href="#">
<i class="bi bi-rocket-takeoff-fill me-2 text-primary"></i><?php echo htmlspecialchars($project_name); ?>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<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="#services">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#results">Results</a></li>
<li class="nav-item"><a class="nav-link ms-lg-3 btn btn-primary text-white" href="#contact">Get a Quote</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h1 class="hero-title">Dominate Social Media. Grow Your Business.</h1>
<p class="lead text-muted mb-4">We help ambitious brands scale through professional social media management, targeted advertising, and high-impact content creation.</p>
<div class="d-flex gap-3">
<a href="#contact" class="btn btn-primary btn-lg">Start Your Project</a>
<a href="#services" class="btn btn-outline-dark btn-lg">Our Services</a>
</div>
<div class="mt-5 d-flex align-items-center gap-4">
<div>
<h4 class="mb-0 fw-bold">500+</h4>
<p class="text-muted small">Campaigns Run</p>
</div>
<div class="vr opacity-25"></div>
<div>
<h4 class="mb-0 fw-bold">10M+</h4>
<p class="text-muted small">Reach Generated</p>
</div>
<div class="vr opacity-25"></div>
<div>
<h4 class="mb-0 fw-bold">98%</h4>
<p class="text-muted small">Client Retention</p>
</div>
</div>
</div>
<div class="col-lg-6 d-none d-lg-block">
<img src="https://images.pexels.com/photos/607812/pexels-photo-607812.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2" alt="SMM Strategy" class="img-fluid rounded shadow-lg">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-5">
<div class="container py-5">
<h2 class="section-title">Our Expertise</h2>
<div class="row g-4">
<div class="col-md-4">
<div class="service-card">
<div class="service-icon"><i class="bi bi-megaphone"></i></div>
<h3>Social Strategy</h3>
<p class="text-muted">Comprehensive planning to align your social presence with your business goals and target audience.</p>
</div>
</div>
<div class="col-md-4">
<div class="service-card">
<div class="service-icon"><i class="bi bi-camera-reels"></i></div>
<h3>Content Creation</h3>
<p class="text-muted">High-quality visuals and compelling copy that stop the scroll and drive engagement.</p>
</div>
</div>
<div class="col-md-4">
<div class="service-card">
<div class="service-icon"><i class="bi bi-graph-up-arrow"></i></div>
<h3>Paid Ads (ROI Focus)</h3>
<p class="text-muted">Targeted ad campaigns on Meta, TikTok, and LinkedIn designed to convert followers into customers.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Results Section (Placeholder/Static) -->
<section id="results" class="py-5 bg-white">
<div class="container py-5">
<div class="row align-items-center">
<div class="col-lg-5">
<h2 class="fw-bold mb-4">Real Results for Real Brands</h2>
<p class="text-muted mb-4">We don't just chase likes; we chase business outcomes. Our case studies show consistent growth in ROI and brand authority.</p>
<ul class="list-unstyled">
<li class="mb-3 d-flex align-items-center"><i class="bi bi-check-circle-fill text-success me-2"></i> 250% average increase in organic reach</li>
<li class="mb-3 d-flex align-items-center"><i class="bi bi-check-circle-fill text-success me-2"></i> 4x ROAS on paid social campaigns</li>
<li class="mb-3 d-flex align-items-center"><i class="bi bi-check-circle-fill text-success me-2"></i> Premium content tailored to each platform</li>
</ul>
</div>
<div class="col-lg-7">
<div class="row g-3">
<div class="col-6">
<img src="https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=600" class="img-fluid rounded" alt="Teamwork">
</div>
<div class="col-6">
<img src="https://images.pexels.com/photos/7007191/pexels-photo-7007191.jpeg?auto=compress&cs=tinysrgb&w=600" class="img-fluid rounded mt-4" alt="Analysis">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="text-center mb-5">
<h2 class="fw-bold text-white">Ready to Scale?</h2>
<p class="text-white-50">Fill out the form below and we'll get back to you with a custom strategy within 24 hours.</p>
</div>
<div class="contact-card">
<form id="leadForm">
<div class="row g-3">
<div class="col-md-6">
<label class="form-label">Full Name</label>
<input type="text" name="name" class="form-control" placeholder="John Doe" required>
</div>
<div class="col-md-6">
<label class="form-label">Email Address</label>
<input type="email" name="email" class="form-control" placeholder="john@example.com" required>
</div>
<div class="col-md-6">
<label class="form-label">Website (Optional)</label>
<input type="url" name="website" class="form-control" placeholder="https://yourbrand.com">
</div>
<div class="col-md-6">
<label class="form-label">Service Interested In</label>
<select name="service" class="form-select form-control">
<option value="Full Management">Full Management</option>
<option value="Paid Social Ads">Paid Social Ads</option>
<option value="Content Creation">Content Creation</option>
<option value="Strategy Only">Strategy Only</option>
</select>
</div>
<div class="col-12">
<label class="form-label">Message / Goals</label>
<textarea name="message" class="form-control" rows="4" placeholder="Tell us about your brand and what you want to achieve..."></textarea>
</div>
<div class="col-12 text-center mt-4">
<button type="submit" class="btn btn-primary btn-lg px-5 shadow">Get My Free Quote</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
<footer class="text-center">
<div class="container">
<div class="mb-3">
<a href="#" class="text-dark mx-2 fs-4"><i class="bi bi-instagram"></i></a>
<a href="#" class="text-dark mx-2 fs-4"><i class="bi bi-linkedin"></i></a>
<a href="#" class="text-dark mx-2 fs-4"><i class="bi bi-twitter-x"></i></a>
</div>
<p class="text-muted">&copy; <?php echo date('Y'); ?> <?php echo htmlspecialchars($project_name); ?>. All rights reserved.</p>
</div>
</footer>
<!-- Success Toast -->
<div class="toast-container position-fixed bottom-0 end-0 p-3">
<div id="successToast" class="toast align-items-center text-white bg-success border-0" role="alert" aria-live="assertive" aria-atomic="true">
<div class="d-flex">
<div class="toast-body">
Message sent successfully! We'll contact you soon.
</div>
<button type="button" class="btn-close btn-close-white me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>