File size: 11,371 Bytes
7e4379c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65c7a39
7e4379c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65c7a39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7e4379c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65c7a39
 
 
 
 
 
 
 
 
7e4379c
 
 
 
 
 
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Electrician Learning Hub</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <style>
        .lesson-card {
            transition: all 0.3s ease;
        }
        .lesson-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .safety-banner {
            background-image: linear-gradient(to right, #ff4b1f, #ff9068);
        }
    </style>
</head>
<body class="bg-gray-50">
    <!-- Navigation -->
    <nav class="bg-white shadow-sm">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16 items-center">
                <div class="flex-shrink-0 flex items-center">
                    <span class="text-xl font-bold text-indigo-600">ElectricianHub</span>
                </div>
                <div class="hidden md:block">
                    <div class="ml-10 flex items-center space-x-4">
                        <a href="index.html" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Home</a>
                        <a href="electricians.html" class="text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Lessons</a>
                        <a href="interactive.html" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Interactive</a>
                        <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Tools</a>
                        <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Safety</a>
                    </div>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="py-20 bg-gradient-to-r from-indigo-500 to-blue-600 text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <h1 class="text-4xl md:text-5xl font-bold mb-6">Electrician Learning Hub</h1>
            <p class="text-xl mb-8">Master electrical skills with our comprehensive lessons and tutorials</p>
            <div class="flex justify-center space-x-4">
                <button class="bg-white text-indigo-600 px-6 py-3 rounded-md font-medium hover:bg-gray-100 transition duration-300">Beginner Lessons</button>
                <button class="bg-transparent border-2 border-white text-white px-6 py-3 rounded-md font-medium hover:bg-white hover:text-indigo-600 transition duration-300">Advanced Courses</button>
            </div>
        </div>
    </section>

    <!-- Safety Banner -->
    <div class="safety-banner py-4 text-white text-center">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <p class="font-bold"><i data-feather="alert-triangle" class="inline mr-2"></i> Always follow safety procedures when working with electricity</p>
        </div>
    </div>

    <!-- Lessons Section -->
    <section class="py-16">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <h2 class="text-3xl font-bold mb-12 text-center">Popular Lessons</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Lesson 1 -->
                <div class="lesson-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up">
                    <img src="http://static.photos/technology/640x360/101" alt="Electrical Basics" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Electrical Fundamentals</h3>
                        <p class="text-gray-600 mb-4">Learn the basics of electricity, circuits, and components.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-sm text-indigo-600 font-medium">Beginner</span>
                            <button class="text-indigo-600 hover:text-indigo-800 font-medium">Start Lesson</button>
                        </div>
                    </div>
                </div>

                <!-- Lesson 2 -->
                <div class="lesson-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="100">
                    <img src="http://static.photos/construction/640x360/102" alt="Wiring" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Residential Wiring</h3>
                        <p class="text-gray-600 mb-4">Master home electrical systems and wiring techniques.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-sm text-indigo-600 font-medium">Intermediate</span>
                            <button class="text-indigo-600 hover:text-indigo-800 font-medium">Start Lesson</button>
                        </div>
                    </div>
                </div>

                <!-- Lesson 3 -->
                <div class="lesson-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="200">
                    <img src="http://static.photos/industry/640x360/103" alt="Safety" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <h3 class="text-xl font-bold mb-2">Electrical Safety</h3>
                        <p class="text-gray-600 mb-4">Essential safety procedures and protective equipment.</p>
                        <div class="flex justify-between items-center">
                            <span class="text-sm text-indigo-600 font-medium">All Levels</span>
                            <button class="text-indigo-600 hover:text-indigo-800 font-medium">Start Lesson</button>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Free Resources Section -->
    <section class="py-16 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <h2 class="text-3xl font-bold mb-12 text-center">Free Online Resources</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
                <!-- Resource 1 -->
                <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up">
                    <a href="https://www.electrical4u.com/" target="_blank" class="block">
                        <h3 class="text-xl font-bold mb-2 text-indigo-600">Electrical4U</h3>
                        <p class="text-gray-600 mb-3">Free electrical engineering tutorials and articles</p>
                        <span class="text-sm text-gray-500">electrical4u.com</span>
                    </a>
                </div>

                <!-- Resource 2 -->
                <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up" data-aos-delay="100">
                    <a href="https://www.ecmweb.com/" target="_blank" class="block">
                        <h3 class="text-xl font-bold mb-2 text-indigo-600">EC&M Magazine</h3>
                        <p class="text-gray-600 mb-3">Electrical construction & maintenance resources</p>
                        <span class="text-sm text-gray-500">ecmweb.com</span>
                    </a>
                </div>

                <!-- Resource 3 -->
                <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up" data-aos-delay="200">
                    <a href="https://www.youtube.com/user/ElectricianU" target="_blank" class="block">
                        <h3 class="text-xl font-bold mb-2 text-indigo-600">Electrician U</h3>
                        <p class="text-gray-600 mb-3">YouTube channel with practical electrical tutorials</p>
                        <span class="text-sm text-gray-500">youtube.com</span>
                    </a>
                </div>

                <!-- Resource 4 -->
                <div class="bg-gray-50 p-6 rounded-lg shadow hover:shadow-md transition" data-aos="fade-up" data-aos-delay="300">
                    <a href="https://www.osha.gov/electrical" target="_blank" class="block">
                        <h3 class="text-xl font-bold mb-2 text-indigo-600">OSHA Electrical</h3>
                        <p class="text-gray-600 mb-3">Official electrical safety standards and guidelines</p>
                        <span class="text-sm text-gray-500">osha.gov</span>
                    </a>
                </div>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="py-16 bg-gray-100">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold">Learning Approach</h2>
                <p class="text-gray-600 mt-4 max-w-2xl mx-auto">Our structured curriculum helps you progress from basics to advanced techniques</p>
            </div>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="text-center p-6" data-aos="fade-up">
                    <i data-feather="book" class="w-12 h-12 text-indigo-600 mx-auto mb-4"></i>
                    <h3 class="text-xl font-bold mb-2">Step-by-Step Lessons</h3>
                    <p class="text-gray-600">Detailed tutorials with clear explanations and diagrams</p>
                </div>
                <div class="text-center p-6" data-aos="fade-up" data-aos-delay="100">
                    <i data-feather="video" class="w-12 h-12 text-indigo-600 mx-auto mb-4"></i>
                    <h3 class="text-xl font-bold mb-2">Video Demonstrations</h3>
                    <p class="text-gray-600">Watch professionals perform electrical work correctly</p>
                </div>
                <div class="text-center p-6" data-aos="fade-up" data-aos-delay="200">
                    <i data-feather="check-circle" class="w-12 h-12 text-indigo-600 mx-auto mb-4"></i>
                    <h3 class="text-xl font-bold mb-2">Practical Exercises</h3>
                    <p class="text-gray-600">Hands-on projects to apply what you've learned</p>
                </div>
            </div>
        </div>
    </section>

    <!-- CTA Section -->
    <section class="py-16 bg-gradient-to-r from-blue-600 to-indigo-700 text-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <h2 class="text-3xl font-bold mb-6">Ready to Advance Your Skills?</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Combine our lessons with these free resources for comprehensive learning</p>
            <button class="bg-white text-indigo-600 px-8 py-4 rounded-md font-bold hover:bg-gray-100 transition duration-300 shadow-lg">Explore All Lessons</button>
        </div>
    </section>

    <script>
        AOS.init();
        feather.replace();
    </script>
</body>
</html>