brickmaster-pro / about.html
yadu321's picture
hey i want app ui should should must exactly to i stached video
486312d verified
Raw
History Blame Contribute Delete
3.97 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - BrickMaster Pro</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-100 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-1 py-20">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl font-bold text-gray-800 mb-8 text-center">About BrickMaster Pro</h1>
<div class="bg-white rounded-lg shadow-lg p-8 mb-8">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Revolutionizing Brick Factory Management</h2>
<p class="text-gray-600 mb-6 leading-relaxed">
BrickMaster Pro is a comprehensive ERP solution designed specifically for brick factories.
Our platform helps factory owners streamline operations, increase productivity, and maximize profits.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<h3 class="text-xl font-bold text-gray-800 mb-4">Our Mission</h3>
<p class="text-gray-600 leading-relaxed">
We're on a mission to digitize and modernize the brick manufacturing industry.
With our intuitive platform, factory owners can manage every aspect of their business from production to sales.
</p>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-4">Key Benefits</h3>
<ul class="text-gray-600 space-y-2">
<li class="flex items-center gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600"></i>
<span>Real-time production tracking</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600"></i>
<span>Automated inventory management</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600"></i>
<span>Comprehensive financial reporting</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="w-5 h-5 text-green-600"></i>
<span>Customer relationship management</span>
</li>
</ul>
</div>
</div>
</div>
<div class="bg-blue-50 rounded-lg p-6">
<h3 class="text-xl font-bold text-gray-800 mb-4">Why Choose BrickMaster Pro?</h3>
<p class="text-gray-600 leading-relaxed">
Our platform is built by industry experts who understand the unique challenges of brick manufacturing.
We combine cutting-edge technology with practical features that actually work in real factory environments.
</p>
</div>
</div>
</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>
</body>
</html>