File size: 3,742 Bytes
1658d4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>