elawady2002's picture
حسن التصميم وتجربة المستخدم علشان فيها مشاكل كتير
f3e2774 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PixelPerfect UI Wizard</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50 text-gray-800 font-sans">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<section class="max-w-4xl mx-auto text-center mb-16">
<h1 class="text-5xl font-bold text-primary-700 mb-6">UI Design Challenges Solved</h1>
<p class="text-xl text-gray-600 mb-8">Transform your design frustrations into pixel-perfect experiences</p>
<div class="flex justify-center gap-4">
<a href="#solutions" class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition-colors">Explore Solutions</a>
<a href="#contact" class="border border-primary-500 text-primary-500 hover:bg-primary-50 px-6 py-3 rounded-lg font-medium transition-colors">Get Help</a>
</div>
</section>
<section id="solutions" class="grid md:grid-cols-3 gap-8 mb-16">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
<div class="text-primary-500 mb-4">
<i data-feather="layout" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Responsive Design</h3>
<p class="text-gray-600">Solutions that adapt beautifully to all screen sizes without breaking your layout.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
<div class="text-primary-500 mb-4">
<i data-feather="user" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-2">User Experience</h3>
<p class="text-gray-600">Intuitive interfaces that guide users naturally through your application.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
<div class="text-primary-500 mb-4">
<i data-feather="code" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Clean Code</h3>
<p class="text-gray-600">Modular, maintainable components that won't give you headaches later.</p>
</div>
</section>
<section class="bg-gradient-to-r from-primary-50 to-secondary-50 p-8 rounded-2xl mb-16">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Common UI Problems We Fix</h2>
<div class="space-y-4 text-left">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-primary-100 text-primary-600">
<i data-feather="check" class="w-4 h-4"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-700">Inconsistent spacing and alignment</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-primary-100 text-primary-600">
<i data-feather="check" class="w-4 h-4"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-700">Poor mobile responsiveness</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-primary-100 text-primary-600">
<i data-feather="check" class="w-4 h-4"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-700">Confusing navigation</p>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="max-w-2xl mx-auto bg-white p-8 rounded-xl shadow-md">
<h2 class="text-2xl font-bold text-center mb-6">Get UI Help</h2>
<form class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-primary-500 focus:border-primary-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-primary-500 focus:border-primary-500">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your UI Challenge</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-primary-500 focus:border-primary-500"></textarea>
</div>
<button type="submit" class="w-full bg-primary-500 hover:bg-primary-600 text-white py-3 rounded-lg font-medium transition-colors">Send Request</button>
</form>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>