printer-repair-royalty / learn_more.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>Learn More | 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;
}
</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">Learn More</h1>
<div class="bg-white rounded-lg shadow-md p-8 mb-8">
<div class="prose max-w-none">
<h2 class="text-2xl font-semibold mb-4">Get in Touch With Peter</h2>
<p>For personalized service and expert advice on your office equipment needs, Peter at Beverly Hills Business Machines is here to help.</p>
<p>With decades of experience in the industry, Peter can answer your questions about equipment repair, maintenance plans, and service options.</p>
<p>To discuss your specific requirements or schedule a consultation, please visit our <a href="contact.html" class="text-green-600 hover:text-green-800 font-medium">Contact page</a> to get in touch.</p>
<p>You can also email Peter directly at <a href="mailto:peter@bhbm.com" class="text-green-600 hover:text-green-800 font-medium">peter@bhbm.com</a> for prompt assistance.</p>
</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>