139 lines
6.9 KiB
PHP
139 lines
6.9 KiB
PHP
<?php
|
|
$projectName = $_SERVER['PROJECT_NAME'] ?? 'Evolve Therapy';
|
|
$projectDesc = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Modern psychological support for adults, couples, and parents.';
|
|
?>
|
|
<!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($projectName); ?></title>
|
|
<meta name="description" content="<?php echo htmlspecialchars($projectDesc); ?>">
|
|
|
|
<!-- Bootstrap 5 -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Google Fonts -->
|
|
<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&display=swap" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="/assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-expand-lg fixed-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#"><?php echo htmlspecialchars($projectName); ?></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="#about">About</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#booking">Book Now</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<header class="hero-section">
|
|
<div class="container">
|
|
<h1>Mindful support for life's complexities.</h1>
|
|
<p class="lead">A safe space to explore, grow, and heal. Specialized therapy for individuals and couples seeking clarity and balance.</p>
|
|
<a href="#booking" class="btn btn-primary btn-lg">Request a Consultation</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Services Section -->
|
|
<section id="services" class="section-padding bg-light-green">
|
|
<div class="container">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">How I can help</h2>
|
|
<p class="text-muted">Tailored therapeutic approaches for your unique journey.</p>
|
|
</div>
|
|
<div class="row g-4">
|
|
<div class="col-md-4">
|
|
<div class="card h-100 p-4 border-0 shadow-sm">
|
|
<h4 class="fw-bold mb-3">Individual Therapy</h4>
|
|
<p class="text-muted">Focused on personal growth, anxiety management, and navigating life transitions.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card h-100 p-4 border-0 shadow-sm">
|
|
<h4 class="fw-bold mb-3">Couples Counseling</h4>
|
|
<p class="text-muted">Improving communication, rebuilding trust, and strengthening emotional bonds.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card h-100 p-4 border-0 shadow-sm">
|
|
<h4 class="fw-bold mb-3">Family Support</h4>
|
|
<p class="text-muted">Guidance for parents and families to foster healthier relationships and understanding.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Booking Section -->
|
|
<section id="booking" class="section-padding bg-white">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-6">
|
|
<div class="text-center mb-5">
|
|
<h2 class="fw-bold">Book a Session</h2>
|
|
<p class="text-muted">Take the first step today. Fill out the form below and I'll get back to you within 24 hours.</p>
|
|
</div>
|
|
<form id="bookingForm" class="row g-3">
|
|
<div class="col-md-12">
|
|
<label class="form-label">Full Name</label>
|
|
<input type="text" name="name" class="form-control" placeholder="Jane Doe" required>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<label class="form-label">Email Address</label>
|
|
<input type="email" name="email" class="form-control" placeholder="jane@example.com" required>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<label class="form-label">Phone Number</label>
|
|
<input type="tel" name="phone" class="form-control" placeholder="(555) 000-0000">
|
|
</div>
|
|
<div class="col-md-12">
|
|
<label class="form-label">Service Interested In</label>
|
|
<select name="service" class="form-select">
|
|
<option value="Individual Therapy">Individual Therapy</option>
|
|
<option value="Couples Counseling">Couples Counseling</option>
|
|
<option value="Family Support">Family Support</option>
|
|
<option value="Other">Other</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-12">
|
|
<label class="form-label">How can I help you?</label>
|
|
<textarea name="message" class="form-control" rows="4" placeholder="Briefly describe what you're looking for..."></textarea>
|
|
</div>
|
|
<div class="col-12 mt-4">
|
|
<button type="submit" class="btn btn-primary w-100 btn-lg text-white">Send Appointment Request</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer class="text-center">
|
|
<div class="container">
|
|
<p class="mb-2">© <?php echo date('Y'); ?> <?php echo htmlspecialchars($projectName); ?>. All rights reserved.</p>
|
|
<p class="small text-muted">A modern approach to psychological wellness.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Toast Container -->
|
|
<div id="toastPlacement" class="toast-container position-fixed bottom-0 end-0 p-3"></div>
|
|
|
|
<!-- Scripts -->
|
|
<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>
|