drr / new_index.html
GreenMoood's picture
redesign this page from scratch with everything that I told you
06d7c67 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EUROHINCA Business Hub</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.glass-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.glass-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.nav-link {
position: relative;
}
.nav-link:after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover:after {
width: 100%;
}
.hero-gradient {
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}
</style>
</head>
<body class="min-h-screen text-white overflow-x-hidden">
<!-- Navigation -->
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="briefcase" class="text-blue-400 w-8 h-8"></i>
<span class="text-xl font-bold bg-clip-text text-transparent hero-gradient">EUROHINCA HUB</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="nav-link">Features</a>
<a href="#" class="nav-link">Solutions</a>
<a href="#" class="nav-link">Pricing</a>
<a href="#" class="nav-link">Resources</a>
</div>
<div class="hidden md:flex items-center space-x-4">
<a href="login.html" class="px-4 py-2 rounded-lg hover:bg-gray-800 transition">Sign In</a>
<a href="login.html" class="px-4 py-2 rounded-lg bg-blue-600 hover:bg-blue-500 transition">Get Started</a>
</div>
<button class="md:hidden" id="mobileMenuToggle">
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</nav>
<!-- Mobile Menu -->
<div id="mobileMenu" class="fixed inset-0 bg-gray-900 bg-opacity-90 z-50 hidden md:hidden">
<div class="absolute top-4 right-4">
<button id="closeMobileMenu">
<i data-feather="x" class="w-8 h-8"></i>
</button>
</div>
<div class="flex flex-col items-center justify-center h-full space-y-8">
<a href="#" class="text-2xl font-medium">Features</a>
<a href="#" class="text-2xl font-medium">Solutions</a>
<a href="#" class="text-2xl font-medium">Pricing</a>
<a href="#" class="text-2xl font-medium">Resources</a>
<div class="pt-8 border-t border-gray-700 w-48 text-center">
<a href="login.html" class="block px-6 py-3 rounded-lg bg-blue-600 hover:bg-blue-500 transition">Sign In</a>
</div>
</div>
</div>
<!-- Hero Section -->
<section class="container mx-auto px-6 py-16 md:py-24">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
Transform Your <span class="bg-clip-text text-transparent hero-gradient">Business Operations</span>
</h1>
<p class="text-xl text-gray-300 mb-8 max-w-lg">
The all-in-one platform for purchasing, logistics, and financial management with streamlined approval workflows.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="login.html" class="px-8 py-4 rounded-lg bg-blue-600 hover:bg-blue-500 transition text-lg font-medium text-center">
Get Started
</a>
<a href="#" class="px-8 py-4 rounded-lg border border-gray-600 hover:border-gray-500 transition text-lg font-medium text-center">
See Demo
</a>
</div>
</div>
<div class="lg:w-1/2 lg:pl-12">
<div class="glass-card p-2">
<img src="http://static.photos/technology/1200x630/1" alt="Dashboard Preview" class="w-full rounded-xl">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="container mx-auto px-6 py-16">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Powerful Features</h2>
<p class="text-xl text-gray-300 max-w-2xl mx-auto">
Everything you need to streamline your business operations in one platform
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="glass-card p-8">
<div class="w-16 h-16 rounded-full bg-blue-500 bg-opacity-20 flex items-center justify-center mb-6">
<i data-feather="shopping-cart" class="w-8 h-8 text-blue-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Smart Purchasing</h3>
<p class="text-gray-300 mb-4">
Manage suppliers, POs, quotes and delivery notes with intelligent automation and approval workflows.
</p>
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
Learn more <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="glass-card p-8">
<div class="w-16 h-16 rounded-full bg-green-500 bg-opacity-20 flex items-center justify-center mb-6">
<i data-feather="truck" class="w-8 h-8 text-green-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Logistics Tracking</h3>
<p class="text-gray-300 mb-4">
Track imports, FLs, DUMs and international suppliers with real-time updates and notifications.
</p>
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
Learn more <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="glass-card p-8">
<div class="w-16 h-16 rounded-full bg-purple-500 bg-opacity-20 flex items-center justify-center mb-6">
<i data-feather="dollar-sign" class="w-8 h-8 text-purple-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Finance Management</h3>
<p class="text-gray-300 mb-4">
Manage invoices, bank statements and payment tracking with financial reporting and analytics.
</p>
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
Learn more <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="glass-card p-8">
<div class="w-16 h-16 rounded-full bg-yellow-500 bg-opacity-20 flex items-center justify-center mb-6">
<i data-feather="file-text" class="w-8 h-8 text-yellow-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Document Control</h3>
<p class="text-gray-300 mb-4">
Centralized document management with version control and secure access permissions.
</p>
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
Learn more <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="glass-card p-8">
<div class="w-16 h-16 rounded-full bg-red-500 bg-opacity-20 flex items-center justify-center mb-6">
<i data-feather="users" class="w-8 h-8 text-red-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Team Collaboration</h3>
<p class="text-gray-300 mb-4">
Real-time collaboration with team members, departments and external partners.
</p>
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
Learn more <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="glass-card p-8">
<div class="w-16 h-16 rounded-full bg-indigo-500 bg-opacity-20 flex items-center justify-center mb-6">
<i data-feather="bar-chart-2" class="w-8 h-8 text-indigo-400"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Advanced Analytics</h3>
<p class="text-gray-300 mb-4">
Powerful reporting and analytics to gain insights into your business performance.
</p>
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
Learn more <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="hero-gradient py-16 md:py-24">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to transform your business operations?</h2>
<p class="text-xl text-blue-100 max-w-2xl mx-auto mb-8">
Join thousands of businesses streamlining their operations with EUROHINCA Hub.
</p>
<a href="login.html" class="inline-block px-8 py-4 rounded-lg bg-white text-blue-600 hover:bg-gray-100 transition text-lg font-medium">
Get Started for Free
</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<i data-feather="briefcase" class="text-blue-400 w-6 h-6"></i>
<span class="text-xl font-bold">EUROHINCA HUB</span>
</div>
<p class="text-gray-400">
The all-in-one platform for purchasing, logistics, and financial management.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Product</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Demo</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Guides</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Legal</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2023 EUROHINCA MAROC SARL. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
</div>
</div>
</div>
</footer>
<script>
feather.replace();
// Mobile menu toggle
const mobileMenuToggle = document.getElementById('mobileMenuToggle');
const mobileMenu = document.getElementById('mobileMenu');
const closeMobileMenu = document.getElementById('closeMobileMenu');
mobileMenuToggle.addEventListener('click', () => {
mobileMenu.classList.remove('hidden');
document.body.style.overflow = 'hidden';
});
closeMobileMenu.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
document.body.style.overflow = '';
});
</script>
</body>
</html>