deliverypal / index.html
ZenTec's picture
Please no functions working at all and you didn't do a pro site it looks so bad poorly organised I don't want any mockup data since this is going to go live after making it so fix - Initial Deployment
820fd96 verified
Raw
History Blame Contribute Delete
17.4 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DeliveryPal - Fast & Reliable Delivery Services</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#FF6B35',
secondary: '#6E0D88',
}
}
}
}
</script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://accounts.google.com/gsi/client" async defer></script>
<style>
.hero-bg {
background-image: linear-gradient(rgba(255, 107, 53, 0.9), rgba(255, 107, 53, 0.8)), url('http://static.photos/technology/1200x630/10');
}
.kyc-card {
border-left: 4px solid #6E0D88;
}
.google-btn {
transition: all 0.3s ease;
}
.google-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body class="font-sans">
<!-- Navigation -->
<nav class="bg-white shadow-md">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i data-feather="truck" class="text-primary h-8 w-8"></i>
<span class="ml-2 text-xl font-bold text-primary">DeliveryPal</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">Home</a>
<a href="#services" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">Services</a>
<a href="#how-it-works" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">How It Works</a>
<a href="#rider" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">Become a Rider</a>
<a href="#business" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">For Businesses</a>
</div>
<div class="flex items-center">
<a href="login.html" class="text-gray-900 hover:text-primary px-3 py-2 text-sm font-medium">Login</a>
<a href="register.html" class="bg-primary text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-opacity-90 transition">Sign Up</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-bg bg-cover bg-center text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-24">
<div class="md:w-1/2" data-aos="fade-right">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Fast & Reliable Delivery Services</h1>
<p class="text-xl mb-8">Get anything delivered anywhere in the city within hours. Our riders are ready to serve you!</p>
<div class="flex flex-col sm:flex-row gap-4">
<a href="register.html" class="bg-white text-primary px-6 py-3 rounded-md text-lg font-semibold text-center hover:bg-opacity-90 transition">Get Started</a>
<a href="#how-it-works" class="border-2 border-white text-white px-6 py-3 rounded-md text-lg font-semibold text-center hover:bg-white hover:text-primary transition">Learn More</a>
</div>
</div>
</div>
</div>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">We offer a variety of delivery solutions to meet your needs</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition" data-aos="fade-up" data-aos-delay="100">
<div class="bg-primary bg-opacity-10 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="package" class="text-primary"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Parcel Delivery</h3>
<p class="text-gray-600">Send packages of any size across town with our reliable delivery network.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition" data-aos="fade-up" data-aos-delay="200">
<div class="bg-primary bg-opacity-10 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="shopping-bag" class="text-primary"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Food Delivery</h3>
<p class="text-gray-600">Get your favorite meals delivered hot and fresh from local restaurants.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition" data-aos="fade-up" data-aos-delay="300">
<div class="bg-primary bg-opacity-10 p-3 rounded-full w-12 h-12 flex items-center justify-center mb-4">
<i data-feather="clock" class="text-primary"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Express Delivery</h3>
<p class="text-gray-600">Need it fast? Our express service delivers within 60 minutes or less.</p>
</div>
</div>
</div>
</section>
<!-- How It Works Section -->
<section id="how-it-works" class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-900 mb-4">How It Works</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Simple steps to get your items delivered</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="text-center" data-aos="fade-up" data-aos-delay="100">
<div class="bg-primary text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">1</div>
<h3 class="text-xl font-semibold mb-2">Request Delivery</h3>
<p class="text-gray-600">Enter pickup and drop-off locations through our app or website.</p>
</div>
<div class="text-center" data-aos="fade-up" data-aos-delay="200">
<div class="bg-primary text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">2</div>
<h3 class="text-xl font-semibold mb-2">Match with Rider</h3>
<p class="text-gray-600">Our system instantly matches your request with the nearest available rider.</p>
</div>
<div class="text-center" data-aos="fade-up" data-aos-delay="300">
<div class="bg-primary text-white w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4 text-2xl font-bold">3</div>
<h3 class="text-xl font-semibold mb-2">Track & Receive</h3>
<p class="text-gray-600">Track your delivery in real-time and receive your items safely.</p>
</div>
</div>
</div>
</section>
<!-- Rider Section -->
<section id="rider" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Become a DeliveryPal Rider</h2>
<p class="text-gray-600 mb-6">Earn money on your own schedule by delivering with DeliveryPal. Join our network of trusted riders today.</p>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-primary mr-2 mt-1"></i>
<span>Flexible working hours</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-primary mr-2 mt-1"></i>
<span>Competitive earnings</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-primary mr-2 mt-1"></i>
<span>Weekly payments</span>
</li>
</ul>
<a href="rider-register.html" class="bg-primary text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition">Apply Now</a>
</div>
<div data-aos="fade-left">
<div class="bg-white p-6 rounded-lg shadow-md kyc-card">
<h3 class="text-xl font-semibold mb-4 text-secondary">Rider Verification Process</h3>
<p class="text-gray-600 mb-4">To ensure safety and reliability, all riders must complete our KYC verification:</p>
<ol class="list-decimal pl-5 space-y-2 text-gray-600">
<li>Submit your application</li>
<li>Upload required documents (ID, vehicle registration, etc.)</li>
<li>Complete background check</li>
<li>Get approved by our team</li>
<li>Start delivering!</li>
</ol>
</div>
</div>
</div>
</div>
</section>
<!-- Business Section -->
<section id="business" class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<img src="http://static.photos/business/640x360/15" alt="Business Delivery" class="rounded-lg shadow-md">
</div>
<div data-aos="fade-left">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Delivery Solutions for Businesses</h2>
<p class="text-gray-600 mb-6">Grow your business with our reliable delivery network. We handle the logistics so you can focus on what matters most.</p>
<ul class="space-y-3 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-primary mr-2 mt-1"></i>
<span>Same-day delivery options</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-primary mr-2 mt-1"></i>
<span>Real-time tracking for you and your customers</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-primary mr-2 mt-1"></i>
<span>Dedicated account management</span>
</li>
</ul>
<a href="business-register.html" class="bg-primary text-white px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition">Get Started</a>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-primary text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6" data-aos="fade-up">Ready to experience fast, reliable delivery?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">Download our app now and get your first delivery at a discounted rate!</p>
<div class="flex flex-col sm:flex-row justify-center gap-4" data-aos="fade-up" data-aos-delay="200">
<a href="#" class="bg-white text-primary px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition">
<div class="flex items-center justify-center">
<i data-feather="smartphone" class="mr-2"></i>
<span>App Store</span>
</div>
</a>
<a href="#" class="bg-white text-primary px-6 py-3 rounded-md text-lg font-semibold hover:bg-opacity-90 transition">
<div class="flex items-center justify-center">
<i data-feather="smartphone" class="mr-2"></i>
<span>Google Play</span>
</div>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i data-feather="truck" class="text-primary h-6 w-6"></i>
<span class="ml-2 text-xl font-bold">DeliveryPal</span>
</div>
<p class="text-gray-400">Fast, reliable delivery services for individuals and businesses.</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li>
<li><a href="#how-it-works" class="text-gray-400 hover:text-white transition">How It Works</a></li>
<li><a href="#rider" class="text-gray-400 hover:text-white transition">Become a Rider</a></li>
<li><a href="#business" class="text-gray-400 hover:text-white transition">For Businesses</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Support</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Help Center</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Connect With Us</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="facebook"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white transition"><i data-feather="linkedin"></i></a>
</div>
<p class="text-gray-400 mt-4">Subscribe to our newsletter</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="px-3 py-2 bg-gray-800 text-white rounded-l-md focus:outline-none focus:ring-2 focus:ring-primary w-full">
<button class="bg-primary px-4 py-2 rounded-r-md hover:bg-opacity-90 transition">
<i data-feather="send"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2023 DeliveryPal. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
</script>
</body>
</html>