File size: 19,890 Bytes
65c7a39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>NCCER-Aligned Curriculum</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>
        .module-card {
            transition: all 0.3s ease;
        }
        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .progress-bar {
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            border-radius: 4px;
        }
        .certification-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
    </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-500 hover: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="nccer-model.html" class="text-gray-900 px-3 py-2 rounded-md text-sm font-medium">NCCER Model</a>
                        <a href="#" class="text-gray-500 hover:text-gray-900 px-3 py-2 rounded-md text-sm font-medium">Certification</a>
                    </div>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="py-20 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">
            <h1 class="text-4xl md:text-5xl font-bold mb-6">NCCER-Aligned Curriculum</h1>
            <p class="text-xl mb-8 max-w-3xl mx-auto">Industry-recognized training modules based on National Center for Construction Education and Research standards</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">View Modules</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">Download Syllabus</button>
            </div>
        </div>
    </section>

    <!-- Modules Overview -->
    <section class="py-16">
        <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 mb-4">Training Modules</h2>
                <p class="text-gray-600 max-w-2xl mx-auto">Structured learning path aligned with NCCER standards for electrical construction</p>
            </div>
            
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
                <!-- Module 1 -->
                <div class="module-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up">
                    <div class="bg-indigo-500 h-2"></div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-4">
                            <h3 class="text-xl font-bold">Module 1: Basic Safety</h3>
                            <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Core</span>
                        </div>
                        <p class="text-gray-600 mb-4">Introduction to safety practices, hazard recognition, and personal protective equipment.</p>
                        <div class="mb-4">
                            <div class="flex justify-between text-sm mb-1">
                                <span>Progress</span>
                                <span>0/8 Lessons</span>
                            </div>
                            <div class="progress-bar bg-gray-200">
                                <div class="progress-fill bg-indigo-500" style="width: 0%"></div>
                            </div>
                        </div>
                        <button class="w-full bg-indigo-600 text-white py-2 rounded hover:bg-indigo-700 transition">Start Module</button>
                    </div>
                </div>

                <!-- Module 2 -->
                <div class="module-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="100">
                    <div class="bg-blue-500 h-2"></div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-4">
                            <h3 class="text-xl font-bold">Module 2: Introduction to Electrical Systems</h3>
                            <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Electrical</span>
                        </div>
                        <p class="text-gray-600 mb-4">Overview of electrical theory, components, and basic circuit analysis.</p>
                        <div class="mb-4">
                            <div class="flex justify-between text-sm mb-1">
                                <span>Progress</span>
                                <span>0/12 Lessons</span>
                            </div>
                            <div class="progress-bar bg-gray-200">
                                <div class="progress-fill bg-blue-500" style="width: 0%"></div>
                            </div>
                        </div>
                        <button class="w-full bg-blue-600 text-white py-2 rounded hover:bg-blue-700 transition">Start Module</button>
                    </div>
                </div>

                <!-- Module 3 -->
                <div class="module-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="200">
                    <div class="bg-purple-500 h-2"></div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-4">
                            <h3 class="text-xl font-bold">Module 3: Electrical Theory</h3>
                            <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">Electrical</span>
                        </div>
                        <p class="text-gray-600 mb-4">Advanced electrical principles including Ohm's law, series/parallel circuits, and power calculations.</p>
                        <div class="mb-4">
                            <div class="flex justify-between text-sm mb-1">
                                <span>Progress</span>
                                <span>0/15 Lessons</span>
                            </div>
                            <div class="progress-bar bg-gray-200">
                                <div class="progress-fill bg-purple-500" style="width: 0%"></div>
                            </div>
                        </div>
                        <button class="w-full bg-purple-600 text-white py-2 rounded hover:bg-purple-700 transition">Start Module</button>
                    </div>
                </div>

                <!-- Module 4 -->
                <div class="module-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up">
                    <div class="bg-yellow-500 h-2"></div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-4">
                            <h3 class="text-xl font-bold">Module 4: Electrical Test Equipment</h3>
                            <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">Electrical</span>
                        </div>
                        <p class="text-gray-600 mb-4">Proper use of multimeters, insulation testers, and other diagnostic tools.</p>
                        <div class="mb-4">
                            <div class="flex justify-between text-sm mb-1">
                                <span>Progress</span>
                                <span>0/10 Lessons</span>
                            </div>
                            <div class="progress-bar bg-gray-200">
                                <div class="progress-fill bg-yellow-500" style="width: 0%"></div>
                            </div>
                        </div>
                        <button class="w-full bg-yellow-600 text-white py-2 rounded hover:bg-yellow-700 transition">Start Module</button>
                    </div>
                </div>

                <!-- Module 5 -->
                <div class="module-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="100">
                    <div class="bg-red-500 h-2"></div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-4">
                            <h3 class="text-xl font-bold">Module 5: Introduction to Hand Tools</h3>
                            <span class="bg-red-100 text-red-800 text-xs px-2 py-1 rounded">Core</span>
                        </div>
                        <p class="text-gray-600 mb-4">Essential hand tools for electrical work including strippers, pliers, and screwdrivers.</p>
                        <div class="mb-4">
                            <div class="flex justify-between text-sm mb-1">
                                <span>Progress</span>
                                <span>0/6 Lessons</span>
                            </div>
                            <div class="progress-bar bg-gray-200">
                                <div class="progress-fill bg-red-500" style="width: 0%"></div>
                            </div>
                        </div>
                        <button class="w-full bg-red-600 text-white py-2 rounded hover:bg-red-700 transition">Start Module</button>
                    </div>
                </div>

                <!-- Module 6 -->
                <div class="module-card bg-white rounded-lg shadow-md overflow-hidden" data-aos="fade-up" data-aos-delay="200">
                    <div class="bg-green-500 h-2"></div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-4">
                            <h3 class="text-xl font-bold">Module 6: Conduit Bending</h3>
                            <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Electrical</span>
                        </div>
                        <p class="text-gray-600 mb-4">Techniques for bending EMT, rigid, and flexible conduit to specification.</p>
                        <div class="mb-4">
                            <div class="flex justify-between text-sm mb-1">
                                <span>Progress</span>
                                <span>0/14 Lessons</span>
                            </div>
                            <div class="progress-bar bg-gray-200">
                                <div class="progress-fill bg-green-500" style="width: 0%"></div>
                            </div>
                        </div>
                        <button class="w-full bg-green-600 text-white py-2 rounded hover:bg-green-700 transition">Start Module</button>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Certification Path -->
    <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 mb-4">Certification Pathway</h2>
                <p class="text-gray-600 max-w-2xl mx-auto">Complete modules to earn industry-recognized credentials</p>
            </div>
            
            <div class="bg-white rounded-xl shadow-md p-8">
                <div class="flex flex-col md:flex-row items-center justify-between mb-8">
                    <div class="text-center md:text-left mb-6 md:mb-0">
                        <h3 class="text-2xl font-bold mb-2">Electrical Level 1 Certification</h3>
                        <p class="text-gray-600">Entry-level credential for electrical construction workers</p>
                    </div>
                    <div class="certification-badge text-white px-6 py-3 rounded-lg">
                        <span class="font-bold">NCCER</span> Certified
                    </div>
                </div>
                
                <div class="grid grid-cols-1 md:grid-cols-4 gap-6">
                    <div class="text-center p-4 border rounded-lg">
                        <div class="text-3xl font-bold text-indigo-600 mb-2">24</div>
                        <div class="text-gray-600">Required Modules</div>
                    </div>
                    <div class="text-center p-4 border rounded-lg">
                        <div class="text-3xl font-bold text-blue-600 mb-2">120</div>
                        <div class="text-gray-600">Hours of Training</div>
                    </div>
                    <div class="text-center p-4 border rounded-lg">
                        <div class="text-3xl font-bold text-green-600 mb-2">85%</div>
                        <div class="text-gray-600">Passing Score</div>
                    </div>
                    <div class="text-center p-4 border rounded-lg">
                        <div class="text-3xl font-bold text-purple-600 mb-2">3</div>
                        <div class="text-gray-600">Years Valid</div>
                    </div>
                </div>
                
                <div class="mt-8">
                    <h4 class="text-lg font-bold mb-4">Required Modules:</h4>
                    <div class="flex flex-wrap gap-2">
                        <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Basic Safety</span>
                        <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Introduction to Electrical Systems</span>
                        <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Electrical Theory</span>
                        <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Electrical Test Equipment</span>
                        <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Introduction to Hand Tools</span>
                        <span class="bg-indigo-100 text-indigo-800 px-3 py-1 rounded-full text-sm">Conduit Bending</span>
                        <span class="bg-gray-100 text-gray-800 px-3 py-1 rounded-full text-sm">+18 more</span>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Assessment Section -->
    <section class="py-16">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="bg-gradient-to-r from-indigo-500 to-blue-600 rounded-2xl p-8 text-white">
                <div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center">
                    <div>
                        <h2 class="text-3xl font-bold mb-4">Performance Assessments</h2>
                        <p class="text-indigo-100 mb-6">Each module includes hands-on performance evaluations to demonstrate competency</p>
                        <ul class="space-y-3">
                            <li class="flex items-center">
                                <i data-feather="check-circle" class="w-5 h-5 mr-3"></i>
                                <span>Written examinations (70% minimum to pass)</span>
                            </li>
                            <li class="flex items-center">
                                <i data-feather="check-circle" class="w-5 h-5 mr-3"></i>
                                <span>Performance testing on job site tasks</span>
                            </li>
                            <li class="flex items-center">
                                <i data-feather="check-circle" class="w-5 h-5 mr-3"></i>
                                <span>Supervisor evaluation and sign-off</span>
                            </li>
                        </ul>
                    </div>
                    <div class="bg-white/10 rounded-xl p-6">
                        <h3 class="text-xl font-bold mb-4">Sample Assessment Tasks</h3>
                        <div class="space-y-4">
                            <div class="flex items-start">
                                <div class="bg-white text-indigo-600 rounded-full w-8 h-8 flex items-center justify-center mr-3 flex-shrink-0">1</div>
                                <div>
                                    <h4 class="font-bold">Circuit Assembly</h4>
                                    <p class="text-indigo-100 text-sm">Build and test a residential lighting circuit</p>
                                </div>
                            </div>
                            <div class="flex items-start">
                                <div class="bg-white text-indigo-600 rounded-full w-8 h-8 flex items-center justify-center mr-3 flex-shrink-0">2</div>
                                <div>
                                    <h4 class="font-bold">Conduit Installation</h4>
                                    <p class="text-indigo-100 text-sm">Install EMT conduit with proper supports and bends</p>
                                </div>
                            </div>
                            <div class="flex items-start">
                                <div class="bg-white text-indigo-600 rounded-full w-8 h-8 flex items-center justify-center mr-3 flex-shrink-0">3</div>
                                <div>
                                    <h4 class="font-bold">Safety Procedures</h4>
                                    <p class="text-indigo-100 text-sm">Demonstrate lockout/tagout procedures</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </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">Start Your NCCER-Aligned Training Today</h2>
            <p class="text-xl mb-8 max-w-2xl mx-auto">Industry-standard curriculum designed to prepare you for certification and career success</p>
            <div class="flex justify-center space-x-4">
                <button class="bg-white text-indigo-600 px-8 py-4 rounded-md font-bold hover:bg-gray-100 transition duration-300 shadow-lg">Enroll Now</button>
                <button class="bg-transparent border-2 border-white text-white px-8 py-4 rounded-md font-bold hover:bg-white hover:text-indigo-600 transition duration-300">View Full Curriculum</button>
            </div>
        </div>
    </section>

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