ratedispatch2 / index.html
sdurdiyev's picture
Add 3 files
cf7922e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HaulMatch - Connect Dispatchers & Carriers</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #f0f0f0;
}
.brutal-border {
border: 4px solid #000;
box-shadow: 8px 8px 0 #000;
}
.brutal-btn {
border: 3px solid #000;
box-shadow: 4px 4px 0 #000;
transition: all 0.2s;
}
.brutal-btn:hover {
transform: translate(2px, 2px);
box-shadow: 2px 2px 0 #000;
}
.brutal-card {
border: 3px solid #000;
box-shadow: 6px 6px 0 #000;
}
.nav-link:hover {
text-decoration: underline;
text-decoration-thickness: 3px;
text-underline-offset: 6px;
}
.stats-card {
border-right: 4px solid #000;
border-bottom: 4px solid #000;
}
input, select, textarea {
border: 3px solid #000 !important;
}
input:focus, select:focus, textarea:focus {
outline: none;
box-shadow: 4px 4px 0 #000;
}
</style>
</head>
<body class="bg-gray-100">
<!-- Navigation -->
<nav class="bg-white py-4 px-6 brutal-border mb-8 sticky top-0 z-50">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-truck-moving text-3xl"></i>
<h1 class="text-2xl font-bold">HAULMATCH</h1>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="nav-link font-medium">For Dispatchers</a>
<a href="#" class="nav-link font-medium">For Carriers</a>
<a href="#" class="nav-link font-medium">How It Works</a>
<a href="#" class="nav-link font-medium">Pricing</a>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="px-4 py-2 font-medium">Log In</a>
<a href="#" class="bg-black text-white px-6 py-2 font-bold brutal-btn">Sign Up</a>
<button class="md:hidden">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="container mx-auto px-4 mb-16">
<div class="bg-yellow-400 p-8 md:p-12 brutal-border">
<div class="md:flex items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h2 class="text-4xl md:text-5xl font-bold mb-6">MATCHING FREIGHT DISPATCHERS WITH TRUCKING COMPANIES</h2>
<p class="text-xl mb-8">The brutalist platform that cuts through the bullshit and gets you connected.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#" class="bg-black text-white px-8 py-3 font-bold text-center brutal-btn">I Need a Dispatcher</a>
<a href="#" class="bg-white text-black px-8 py-3 font-bold text-center brutal-btn">I Need Loads</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1602722053026-5c1693ba0c4a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Truck on highway" class="w-full max-w-md brutal-border">
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="container mx-auto px-4 mb-16">
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-white p-6 stats-card">
<h3 class="text-4xl font-bold mb-2">5,000+</h3>
<p class="font-medium">ACTIVE DISPATCHERS</p>
</div>
<div class="bg-white p-6 stats-card">
<h3 class="text-4xl font-bold mb-2">12K+</h3>
<p class="font-medium">TRUCKING COMPANIES</p>
</div>
<div class="bg-white p-6 stats-card">
<h3 class="text-4xl font-bold mb-2">$2.5M+</h3>
<p class="font-medium">IN FREIGHT MOVED</p>
</div>
<div class="bg-white p-6">
<h3 class="text-4xl font-bold mb-2">24/7</h3>
<p class="font-medium">SUPPORT</p>
</div>
</div>
</section>
<!-- How It Works -->
<section class="container mx-auto px-4 mb-16">
<h2 class="text-3xl font-bold mb-12 text-center">HOW IT WORKS</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-white p-6 brutal-card">
<div class="bg-black text-white w-12 h-12 flex items-center justify-center text-2xl font-bold mb-4">1</div>
<h3 class="text-xl font-bold mb-4">Create Your Profile</h3>
<p>Whether you're a dispatcher or carrier, set up your profile with all the essential details.</p>
</div>
<div class="bg-white p-6 brutal-card">
<div class="bg-black text-white w-12 h-12 flex items-center justify-center text-2xl font-bold mb-4">2</div>
<h3 class="text-xl font-bold mb-4">Find Matches</h3>
<p>Our algorithm connects you with the most compatible partners based on your needs and specialties.</p>
</div>
<div class="bg-white p-6 brutal-card">
<div class="bg-black text-white w-12 h-12 flex items-center justify-center text-2xl font-bold mb-4">3</div>
<h3 class="text-xl font-bold mb-4">Start Working</h3>
<p>Communicate through our secure platform and get those loads moving.</p>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="container mx-auto px-4 mb-16">
<h2 class="text-3xl font-bold mb-12 text-center">WHAT OUR USERS SAY</h2>
<div class="grid md:grid-cols-2 gap-8">
<div class="bg-white p-6 brutal-card">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-gray-300 rounded-full mr-4"></div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-600">Freight Dispatcher</p>
</div>
</div>
<p class="text-lg">"HaulMatch connected me with three reliable carriers in my first week. The platform is straightforward and gets results."</p>
<div class="flex mt-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<div class="bg-white p-6 brutal-card">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-gray-300 rounded-full mr-4"></div>
<div>
<h4 class="font-bold">Mike Rodriguez</h4>
<p class="text-gray-600">Trucking Company Owner</p>
</div>
</div>
<p class="text-lg">"Found an amazing dispatcher who understands my business. We've increased our loads by 40% since connecting."</p>
<div class="flex mt-4">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="container mx-auto px-4 mb-16">
<div class="bg-black text-white p-8 md:p-12 brutal-border">
<div class="md:flex items-center justify-between">
<div class="md:w-2/3 mb-8 md:mb-0">
<h2 class="text-3xl md:text-4xl font-bold mb-4">READY TO TRANSFORM YOUR FREIGHT BUSINESS?</h2>
<p class="text-xl">Join thousands of dispatchers and carriers making more money with less hassle.</p>
</div>
<div class="md:w-1/3 flex justify-center">
<a href="#" class="bg-white text-black px-8 py-3 font-bold text-center brutal-btn">GET STARTED NOW</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-white py-8 px-6 brutal-border-t">
<div class="container mx-auto">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i class="fas fa-truck-moving text-2xl"></i>
<h3 class="text-xl font-bold">HAULMATCH</h3>
</div>
<p class="mb-4">The no-nonsense platform connecting freight dispatchers and trucking companies.</p>
<div class="flex space-x-4">
<a href="#" class="text-2xl"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-2xl"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-2xl"><i class="fab fa-facebook"></i></a>
</div>
</div>
<div>
<h4 class="font-bold mb-4 text-lg">For Dispatchers</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:underline">Find Carriers</a></li>
<li><a href="#" class="hover:underline">Pricing</a></li>
<li><a href="#" class="hover:underline">Success Stories</a></li>
<li><a href="#" class="hover:underline">Resources</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4 text-lg">For Carriers</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:underline">Find Dispatchers</a></li>
<li><a href="#" class="hover:underline">Pricing</a></li>
<li><a href="#" class="hover:underline">Success Stories</a></li>
<li><a href="#" class="hover:underline">Resources</a></li>
</ul>
</div>
<div>
<h4 class="font-bold mb-4 text-lg">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="hover:underline">About Us</a></li>
<li><a href="#" class="hover:underline">Careers</a></li>
<li><a href="#" class="hover:underline">Contact</a></li>
<li><a href="#" class="hover:underline">Blog</a></li>
</ul>
</div>
</div>
<div class="pt-6 border-t-2 border-black flex flex-col md:flex-row justify-between items-center">
<p>© 2023 HaulMatch. All rights reserved.</p>
<div class="flex space-x-6 mt-4 md:mt-0">
<a href="#" class="hover:underline">Terms</a>
<a href="#" class="hover:underline">Privacy</a>
<a href="#" class="hover:underline">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle functionality
document.addEventListener('DOMContentLoaded', function() {
const mobileMenuButton = document.querySelector('button.md\\:hidden');
const mobileMenu = document.querySelector('.hidden.md\\:flex');
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
mobileMenu.classList.toggle('flex');
mobileMenu.classList.toggle('flex-col');
mobileMenu.classList.toggle('absolute');
mobileMenu.classList.toggle('top-16');
mobileMenu.classList.toggle('left-0');
mobileMenu.classList.toggle('right-0');
mobileMenu.classList.toggle('bg-white');
mobileMenu.classList.toggle('p-4');
mobileMenu.classList.toggle('space-y-4');
mobileMenu.classList.toggle('space-x-8');
mobileMenu.classList.toggle('border-b-4');
mobileMenu.classList.toggle('border-black');
});
// Form submission example
const signupForms = document.querySelectorAll('a[href="#"]');
signupForms.forEach(form => {
form.addEventListener('click', function(e) {
e.preventDefault();
alert('Sign up functionality would go here!');
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=sdurdiyev/ratedispatch2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>