printer-repair-royalty / service.html
Ripcurlsurf's picture
remove the about page. Can you import the text from https://bhbm.com/history.asp to create the history page. Change the menu for service records and name it Service Request.
1658d4e verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services | BHBM</title>
<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>
<style>
.brand-gradient {
background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}
.jelly-bean {
background-color: #4CAF50;
}
.jelly-bean-light {
background-color: #8BC34A;
}
.jelly-bean-dark {
background-color: #2E7D32;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="brand-gradient text-white shadow-lg">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="printer" class="w-8 h-8"></i>
<span class="text-xl font-bold">BHBM</span>
</div>
<div class="hidden md:flex space-x-2">
<a href="index.html" class="jelly-bean px-4 py-2 rounded-full hover:bg-green-600 transition">Home</a>
<a href="service.html" class="jelly-bean px-4 py-2 rounded-full hover:bg-green-600 transition">Services</a>
<a href="history.html" class="jelly-bean px-4 py-2 rounded-full hover:bg-green-600 transition">History</a>
<a href="contact.html" class="jelly-bean px-4 py-2 rounded-full hover:bg-green-600 transition">Contact</a>
<a href="service_request.html" class="jelly-bean px-4 py-2 rounded-full hover:bg-green-600 transition">Service Request</a>
<a href="learn_more.html" class="jelly-bean px-4 py-2 rounded-full hover:bg-green-600 transition">Learn More</a>
</div>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container mx-auto px-4 py-12">
<h1 class="text-3xl font-bold mb-8 text-gray-800">Our Services</h1>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<i data-feather="printer" class="w-6 h-6 text-blue-600 mr-2"></i>
<h3 class="text-xl font-semibold">Laser Printers</h3>
</div>
<p class="text-gray-600">Expert repair and maintenance services for all laser printer models.</p>
</div>
</div>
<!-- Service Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<i data-feather="copy" class="w-6 h-6 text-blue-600 mr-2"></i>
<h3 class="text-xl font-semibold">Copiers</h3>
</div>
<p class="text-gray-600">Comprehensive copier repair services to keep your office running smoothly.</p>
</div>
</div>
<!-- Service Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<i data-feather="inbox" class="w-6 h-6 text-blue-600 mr-2"></i>
<h3 class="text-xl font-semibold">Fax Machines</h3>
</div>
<p class="text-gray-600">Reliable fax machine repairs to maintain your business communications.</p>
</div>
</div>
<!-- Service Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<i data-feather="printer" class="w-6 h-6 text-blue-600 mr-2"></i>
<h3 class="text-xl font-semibold">Inkjet Printers</h3>
</div>
<p class="text-gray-600">Quality repairs for inkjet printers with quick turnaround times.</p>
</div>
</div>
<!-- Service Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<i data-feather="scissors" class="w-6 h-6 text-blue-600 mr-2"></i>
<h3 class="text-xl font-semibold">Paper Shredders</h3>
</div>
<p class="text-gray-600">Professional shredder repairs to protect your sensitive documents.</p>
</div>
</div>
<!-- Service Card -->
<div class="bg-white rounded-lg shadow-md overflow-hidden service-card transition duration-300">
<div class="p-6">
<div class="flex items-center mb-4">
<i data-feather="tool" class="w-6 h-6 text-blue-600 mr-2"></i>
<h3 class="text-xl font-semibold">Regular Maintenance</h3>
</div>
<p class="text-gray-600">Preventative maintenance programs to extend equipment life.</p>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
<p>&copy; 2023 Beverly Hills Business Machines. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>