34830-vm/index.php
2025-10-09 13:06:04 +00:00

149 lines
7.0 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HerWay - Travel Safe, Together</title>
<meta name="description" content="HerWay is a travel safety app for women, providing real-time connections, verified users, and safety features.">
<!-- Google Fonts: Poppins -->
<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">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css">
</head>
<body>
<!-- Header -->
<header class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand fw-bold" href="#">HerWay</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="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
<li class="nav-item"><a class="btn btn-primary ms-lg-3" href="#">Sign Up</a></li>
</ul>
</div>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="hero-section text-center">
<div class="container">
<h1 class="display-4 fw-bold">Travel Safe, Together.</h1>
<p class="lead my-4">Connecting women for safer journeys with real-time alerts and a trusted community.</p>
<button id="sosButton" class="btn btn-sos btn-lg rounded-circle">
<i class="bi bi-shield-lock-fill"></i>
<span class="sos-text">SOS</span>
</button>
<p class="mt-3 text-muted">Press in case of emergency</p>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-5">
<div class="container">
<h2 class="text-center mb-5">Core Safety Features</h2>
<div class="row text-center">
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<i class="bi bi-person-check-fill display-4 text-primary"></i>
<h3 class="h4 mt-3">Verified Users</h3>
<p>Connect with a community of identity-verified travelers for peace of mind.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<i class="bi bi-geo-alt-fill display-4 text-primary"></i>
<h3 class="h4 mt-3">Live Location Sharing</h3>
<p>Share your real-time location with trusted contacts when you feel unsafe.</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body">
<i class="bi bi-telephone-fill display-4 text-primary"></i>
<h3 class="h4 mt-3">Fake Call Simulation</h3>
<p>Discreetly trigger a fake phone call to deter unwanted interactions.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-5 bg-light">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<h2>Our Mission</h2>
<p>HerWay was born from a simple idea: every woman deserves to travel without fear. We are building a platform that empowers women to connect, share journeys, and look out for one another. By combining technology with a trusted community, we aim to make every trip a safer one.</p>
</div>
<div class="col-md-6 text-center">
<!-- Placeholder for an illustration -->
<i class="bi bi-heart-fill display-1 text-primary"></i>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-5">
<div class="container text-center">
<h2>Get in Touch</h2>
<p class="lead">Have questions or want to partner with us? We'd love to hear from you.</p>
<a href="contact.php" class="btn btn-primary btn-lg">Contact Us</a>
</div>
</section>
</main>
<!-- Footer -->
<footer class="py-4 bg-dark text-white">
<div class="container text-center">
<p>&copy; <?php echo date("Y"); ?> HerWay. All Rights Reserved.</p>
<p>
<a href="#" class="text-white">Privacy Policy</a> |
<a href="#" class="text-white">Terms of Service</a>
</p>
</div>
</footer>
<!-- SOS Toast Notification -->
<div class="position-fixed bottom-0 end-0 p-3" style="z-index: 11">
<div id="sosToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<strong class="me-auto text-danger"><i class="bi bi-exclamation-triangle-fill"></i> SOS Activated</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
Your emergency contacts have been notified and are receiving your live location.
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="assets/js/main.js"></script>
</body>
</html>