Spaces:
Running
Running
File size: 3,973 Bytes
486312d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | <!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> |