34766-vm/index.php
Flatlogic Bot 19713d7205 1.0
2025-10-07 19:35:34 +00:00

150 lines
8.3 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FoodBridge - Connecting NGOs and Restaurants</title>
<meta name="description" content="FoodBridge is a platform dedicated to connecting NGOs with restaurants to redistribute surplus food and fight hunger.">
<meta name="keywords" content="food donation, surplus food, NGO, restaurant, community support, food waste reduction, hunger relief, non-profit, food security, social impact, Built with Flatlogic Generator">
<meta property="og:title" content="FoodBridge - Connecting NGOs and Restaurants">
<meta property="og:description" content="Join FoodBridge to connect with local partners, reduce food waste, and support your community.">
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? 'https://picsum.photos/seed/social/1200/630'); ?>">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? 'https://picsum.photos/seed/social/1200/630'); ?>">
<!-- Bootstrap 5 CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- 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=Lato:wght@400;700&family=Merriweather:wght@700&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="#">FoodBridge</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="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#ngos">For NGOs</a></li>
<li class="nav-item"><a class="nav-link" href="#restaurants">For Restaurants</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header id="hero" class="hero-section">
<div class="container text-center">
<h1 class="hero-title">Turn Surplus into Supper.</h1>
<p class="hero-subtitle">We connect restaurants with surplus food to NGOs who feed the hungry.</p>
<div class="hero-cta">
<a href="#ngos" class="btn btn-primary btn-lg">NGOs: Find Food</a>
<a href="#restaurants" class="btn btn-secondary btn-lg">Restaurants: Donate Food</a>
</div>
</div>
</header>
<main>
<section id="about" class="py-5">
<div class="container">
<h2 class="section-title text-center mb-5">How It Works</h2>
<div class="row align-items-center">
<div class="col-md-6">
<img src="https://picsum.photos/seed/process/800/600" class="img-fluid rounded shadow" alt="A graphic illustrating the process: a restaurant lists surplus food, an NGO claims it, and a volunteer delivers it.">
</div>
<div class="col-md-6">
<div class="step">
<h3>1. Restaurants List Surplus</h3>
<p>Restaurants with unsold, quality food post a listing on our platform instead of throwing it away.</p>
</div>
<div class="step">
<h3>2. NGOs Claim Donations</h3>
<p>Verified NGOs in the area receive notifications and can claim the food donations they need.</p>
</div>
<div class="step">
<h3>3. Community Gets Fed</h3>
<p>A volunteer picks up the food and delivers it, ensuring it reaches those who need it most.</p>
</div>
</div>
</div>
</div>
</section>
<section id="ngos" class="py-5 bg-light">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<h2 class="section-title mb-4">For NGOs</h2>
<p>Access a steady stream of quality food donations from local restaurants. Reduce your operational costs, expand your reach, and focus on what you do best: serving the community.</p>
<a href="#" class="btn btn-primary">Register your NGO</a>
</div>
<div class="col-md-6">
<img src="https://picsum.photos/seed/ngo/800/600" class="img-fluid rounded shadow" alt="A smiling volunteer from an NGO receiving a food donation.">
</div>
</div>
</div>
</section>
<section id="restaurants" class="py-5">
<div class="container">
<div class="row align-items-center flex-row-reverse">
<div class="col-md-6">
<h2 class="section-title mb-4">For Restaurants</h2>
<p>Reduce food waste, gain tax benefits, and build a positive brand image. Donating your surplus food is simple, efficient, and makes a tangible impact in your local community.</p>
<a href="#" class="btn btn-secondary">Register your Restaurant</a>
</div>
<div class="col-md-6">
<img src="https://picsum.photos/seed/restaurant/800/600" class="img-fluid rounded shadow" alt="A chef plating food in a restaurant kitchen, representing food donation.">
</div>
</div>
</div>
</section>
<section id="contact" class="py-5 bg-light">
<div class="container">
<h2 class="section-title text-center mb-5">Get In Touch</h2>
<div class="row">
<div class="col-md-8 mx-auto">
<form>
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
</div>
</div>
</div>
</section>
</main>
<footer class="py-4 text-center">
<div class="container">
<p>&copy; <?php echo date("Y"); ?> FoodBridge. All Rights Reserved.</p>
<p><a href="/privacy.php">Privacy Policy</a></p>
</div>
</footer>
<!-- Bootstrap 5 JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- Custom JS -->
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
</body>
</html>