36779-vm/index.php
2025-12-09 03:05:26 +00:00

112 lines
5.4 KiB
PHP

<!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($_SERVER['PROJECT_NAME'] ?? 'Homoeopathic Hospital'); ?></title>
<meta name="description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'A modern management system for homoeopathic hospitals.'); ?>">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Header -->
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<div class="container">
<a class="navbar-brand fw-bold" href="#"><?php echo htmlspecialchars($_SERVER['PROJECT_NAME'] ?? 'Homoeopathic Hospital'); ?></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="btn btn-primary" href="login.php">Patient Login</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero">
<div class="container">
<h1 class="display-4 fw-bold">Healing with a Gentle Touch</h1>
<p class="lead">Your trusted partner in holistic and natural healthcare.</p>
<a href="#services" class="btn btn-light btn-lg mt-3">Explore Our Services</a>
</div>
</header>
<!-- Services Section -->
<section id="services" class="section">
<div class="container">
<h2 class="text-center mb-5">Our Services</h2>
<div class="row">
<div class="col-md-3 mb-4">
<div class="card h-100 text-center">
<div class="card-body">
<i class="bi bi-person-check-fill fs-1 text-primary"></i>
<h5 class="card-title mt-3">General Consultation</h5>
<p class="card-text">Expert homoeopathic advice for all your health concerns.</p>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card h-100 text-center">
<div class="card-body">
<i class="bi bi-capsule fs-1 text-primary"></i>
<h5 class="card-title mt-3">Pharmacy</h5>
<p class="card-text">A fully-stocked dispensary with authentic remedies.</p>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card h-100 text-center">
<div class="card-body">
<i class="bi bi-heart-pulse-fill fs-1 text-primary"></i>
<h5 class="card-title mt-3">Laboratory</h5>
<p class="card-text">Advanced diagnostics to support accurate treatment.</p>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card h-100 text-center">
<div class="card-body">
<i class="bi bi-building-fill-check fs-1 text-primary"></i>
<h5 class="card-title mt-3">In-Patient Care</h5>
<p class="card-text">Comfortable and caring environment for recovery.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Us Section -->
<section class="section bg-light">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<h2>About Us</h2>
<p>We are a state-of-the-art facility dedicated to providing the highest quality of homoeopathic treatment. Our team of experienced doctors and compassionate staff work together to create a healing environment that addresses the root cause of illness and promotes long-term wellness.</p>
</div>
<div class="col-md-6 text-center">
<i class="bi bi-hospital-fill display-1 text-secondary"></i>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container text-center">
<p>&copy; <?php echo date("Y"); ?> <?php echo htmlspecialchars($_SERVER['PROJECT_NAME'] ?? 'Homoeopathic Hospital'); ?>. All Rights Reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>