Altaire commited on
Commit
81d2dcf
·
verified ·
1 Parent(s): 3e45cd5

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +555 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Course
3
- emoji: 🌍
4
- colorFrom: indigo
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: course
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,555 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Altaire AI Training - AI Made Simple for Non-Technical Professionals</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .hero-gradient {
11
+ background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
12
+ }
13
+ .course-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .testimonial-card {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .testimonial-card:hover {
21
+ transform: scale(1.03);
22
+ }
23
+ .animate-float {
24
+ animation: float 6s ease-in-out infinite;
25
+ }
26
+ @keyframes float {
27
+ 0% { transform: translateY(0px); }
28
+ 50% { transform: translateY(-15px); }
29
+ 100% { transform: translateY(0px); }
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="font-sans antialiased text-gray-800">
34
+ <!-- Navigation -->
35
+ <nav class="bg-white shadow-md sticky top-0 z-50">
36
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
37
+ <div class="flex justify-between h-16">
38
+ <div class="flex items-center">
39
+ <div class="flex-shrink-0 flex items-center">
40
+ <img class="h-8 w-auto" src="https://via.placeholder.com/150x50?text=Altaire" alt="Altaire Logo">
41
+ </div>
42
+ </div>
43
+ <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
44
+ <a href="#about" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">About</a>
45
+ <a href="#course" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Course</a>
46
+ <a href="#benefits" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Benefits</a>
47
+ <a href="#testimonials" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Testimonials</a>
48
+ <a href="#register" class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">Register Now</a>
49
+ </div>
50
+ <div class="-mr-2 flex items-center md:hidden">
51
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-controls="mobile-menu" aria-expanded="false">
52
+ <span class="sr-only">Open main menu</span>
53
+ <i class="fas fa-bars"></i>
54
+ </button>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ </nav>
59
+
60
+ <!-- Hero Section -->
61
+ <div class="hero-gradient text-white">
62
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
63
+ <div class="md:flex md:items-center md:justify-between">
64
+ <div class="md:w-1/2 mb-10 md:mb-0">
65
+ <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">AI Training for <span class="text-yellow-300">Non-Technical</span> Professionals</h1>
66
+ <p class="text-xl mb-8">Master AI concepts in just one day with our hands-on, jargon-free training designed specifically for business professionals.</p>
67
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
68
+ <a href="#register" class="bg-white text-indigo-600 px-8 py-3 rounded-md text-lg font-semibold hover:bg-gray-100 transition duration-300 text-center">Register Today</a>
69
+ <a href="#course" class="border-2 border-white text-white px-8 py-3 rounded-md text-lg font-semibold hover:bg-white hover:text-indigo-600 transition duration-300 text-center">Learn More</a>
70
+ </div>
71
+ </div>
72
+ <div class="md:w-1/2 flex justify-center">
73
+ <img src="https://via.placeholder.com/500x400?text=AI+Training" alt="AI Training Illustration" class="rounded-lg shadow-xl animate-float">
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </div>
78
+
79
+ <!-- Stats Section -->
80
+ <div class="bg-white py-12">
81
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
82
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
83
+ <div class="p-6 border border-gray-200 rounded-lg hover:shadow-lg transition duration-300">
84
+ <div class="text-4xl font-bold text-indigo-600 mb-2">1,500+</div>
85
+ <div class="text-gray-600">Professionals Trained</div>
86
+ </div>
87
+ <div class="p-6 border border-gray-200 rounded-lg hover:shadow-lg transition duration-300">
88
+ <div class="text-4xl font-bold text-indigo-600 mb-2">94%</div>
89
+ <div class="text-gray-600">Satisfaction Rate</div>
90
+ </div>
91
+ <div class="p-6 border border-gray-200 rounded-lg hover:shadow-lg transition duration-300">
92
+ <div class="text-4xl font-bold text-indigo-600 mb-2">1 Day</div>
93
+ <div class="text-gray-600">To AI Confidence</div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <!-- About Section -->
100
+ <div id="about" class="bg-gray-50 py-20">
101
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
102
+ <div class="text-center mb-16">
103
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Why Learn AI with Altaire?</h2>
104
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Our one-day intensive course is designed specifically for non-technical professionals who want to understand and leverage AI in their work.</p>
105
+ </div>
106
+ <div class="grid md:grid-cols-2 gap-12 items-center">
107
+ <div>
108
+ <img src="https://via.placeholder.com/600x400?text=AI+Workshop" alt="AI Workshop" class="rounded-lg shadow-lg">
109
+ </div>
110
+ <div>
111
+ <div class="mb-8">
112
+ <div class="flex items-start mb-4">
113
+ <div class="flex-shrink-0 bg-indigo-100 p-2 rounded-full mr-4">
114
+ <i class="fas fa-brain text-indigo-600 text-xl"></i>
115
+ </div>
116
+ <div>
117
+ <h3 class="text-xl font-semibold mb-2">No Technical Background Needed</h3>
118
+ <p class="text-gray-600">We break down complex AI concepts into simple, understandable terms with real-world analogies.</p>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ <div class="mb-8">
123
+ <div class="flex items-start mb-4">
124
+ <div class="flex-shrink-0 bg-indigo-100 p-2 rounded-full mr-4">
125
+ <i class="fas fa-chart-line text-indigo-600 text-xl"></i>
126
+ </div>
127
+ <div>
128
+ <h3 class="text-xl font-semibold mb-2">Immediate Practical Application</h3>
129
+ <p class="text-gray-600">Walk away with actionable strategies to implement AI solutions in your specific industry.</p>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ <div>
134
+ <div class="flex items-start mb-4">
135
+ <div class="flex-shrink-0 bg-indigo-100 p-2 rounded-full mr-4">
136
+ <i class="fas fa-users text-indigo-600 text-xl"></i>
137
+ </div>
138
+ <div>
139
+ <h3 class="text-xl font-semibold mb-2">Interactive Learning</h3>
140
+ <p class="text-gray-600">Engage in hands-on exercises and group discussions tailored to your business challenges.</p>
141
+ </div>
142
+ </div>
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- Course Details Section -->
150
+ <div id="course" class="py-20 bg-white">
151
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
152
+ <div class="text-center mb-16">
153
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Your One-Day AI Learning Journey</h2>
154
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">A carefully structured day that builds from foundational understanding to practical application.</p>
155
+ </div>
156
+
157
+ <div class="grid md:grid-cols-2 gap-8 mb-16">
158
+ <!-- Morning Session -->
159
+ <div class="course-card bg-indigo-50 rounded-xl p-8 transition duration-300">
160
+ <div class="flex items-center mb-6">
161
+ <div class="bg-indigo-100 p-3 rounded-full mr-4">
162
+ <i class="fas fa-sun text-indigo-600 text-2xl"></i>
163
+ </div>
164
+ <h3 class="text-2xl font-bold text-gray-900">Morning Session: AI Fundamentals</h3>
165
+ </div>
166
+ <ul class="space-y-4">
167
+ <li class="flex items-start">
168
+ <i class="fas fa-check-circle text-indigo-600 mt-1 mr-3"></i>
169
+ <span>Understanding AI, ML, and Deep Learning without the jargon</span>
170
+ </li>
171
+ <li class="flex items-start">
172
+ <i class="fas fa-check-circle text-indigo-600 mt-1 mr-3"></i>
173
+ <span>Current capabilities and limitations of AI technology</span>
174
+ </li>
175
+ <li class="flex items-start">
176
+ <i class="fas fa-check-circle text-indigo-600 mt-1 mr-3"></i>
177
+ <span>Industry-specific AI applications and case studies</span>
178
+ </li>
179
+ <li class="flex items-start">
180
+ <i class="fas fa-check-circle text-indigo-600 mt-1 mr-3"></i>
181
+ <span>Ethical considerations and responsible AI use</span>
182
+ </li>
183
+ </ul>
184
+ </div>
185
+
186
+ <!-- Afternoon Session -->
187
+ <div class="course-card bg-yellow-50 rounded-xl p-8 transition duration-300">
188
+ <div class="flex items-center mb-6">
189
+ <div class="bg-yellow-100 p-3 rounded-full mr-4">
190
+ <i class="fas fa-lightbulb text-yellow-600 text-2xl"></i>
191
+ </div>
192
+ <h3 class="text-2xl font-bold text-gray-900">Afternoon Session: Practical Problem Solving</h3>
193
+ </div>
194
+ <ul class="space-y-4">
195
+ <li class="flex items-start">
196
+ <i class="fas fa-check-circle text-yellow-600 mt-1 mr-3"></i>
197
+ <span>Hands-on exercises with no-code AI tools</span>
198
+ </li>
199
+ <li class="flex items-start">
200
+ <i class="fas fa-check-circle text-yellow-600 mt-1 mr-3"></i>
201
+ <span>Group workshops to solve real business challenges</span>
202
+ </li>
203
+ <li class="flex items-start">
204
+ <i class="fas fa-check-circle text-yellow-600 mt-1 mr-3"></i>
205
+ <span>Developing an AI implementation roadmap for your organization</span>
206
+ </li>
207
+ <li class="flex items-start">
208
+ <i class="fas fa-check-circle text-yellow-600 mt-1 mr-3"></i>
209
+ <span>Q&A with AI experts and practitioners</span>
210
+ </li>
211
+ </ul>
212
+ </div>
213
+ </div>
214
+
215
+ <div class="text-center">
216
+ <a href="#register" class="bg-indigo-600 text-white px-8 py-3 rounded-md text-lg font-semibold hover:bg-indigo-700 transition duration-300 inline-block">Reserve Your Spot Now</a>
217
+ </div>
218
+ </div>
219
+ </div>
220
+
221
+ <!-- Who Should Attend -->
222
+ <div class="bg-gray-900 text-white py-20">
223
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
224
+ <div class="text-center mb-16">
225
+ <h2 class="text-3xl font-bold mb-4">Who Should Attend?</h2>
226
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">This course is perfect for professionals who want to understand AI without becoming technical experts.</p>
227
+ </div>
228
+
229
+ <div class="grid md:grid-cols-3 gap-8">
230
+ <div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition duration-300">
231
+ <div class="text-indigo-400 text-4xl mb-4">
232
+ <i class="fas fa-briefcase"></i>
233
+ </div>
234
+ <h3 class="text-xl font-bold mb-3">Business Leaders</h3>
235
+ <p class="text-gray-300">CEOs, managers, and executives who need to make informed decisions about AI adoption.</p>
236
+ </div>
237
+ <div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition duration-300">
238
+ <div class="text-indigo-400 text-4xl mb-4">
239
+ <i class="fas fa-chart-pie"></i>
240
+ </div>
241
+ <h3 class="text-xl font-bold mb-3">Analysts & Strategists</h3>
242
+ <p class="text-gray-300">Professionals who want to leverage AI for data-driven insights and decision making.</p>
243
+ </div>
244
+ <div class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition duration-300">
245
+ <div class="text-indigo-400 text-4xl mb-4">
246
+ <i class="fas fa-user-tie"></i>
247
+ </div>
248
+ <h3 class="text-xl font-bold mb-3">Consultants & Advisors</h3>
249
+ <p class="text-gray-300">Those who need to advise clients on AI opportunities and implementation strategies.</p>
250
+ </div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Benefits Section -->
256
+ <div id="benefits" class="py-20 bg-white">
257
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
258
+ <div class="text-center mb-16">
259
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">What You'll Gain</h2>
260
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Transform your understanding of AI in just one intensive day.</p>
261
+ </div>
262
+
263
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
264
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
265
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
266
+ <i class="fas fa-eye text-indigo-600 text-2xl"></i>
267
+ </div>
268
+ <h3 class="text-xl font-bold mb-3">Clear Understanding</h3>
269
+ <p class="text-gray-600">Cut through the hype and understand what AI can and cannot do for your business.</p>
270
+ </div>
271
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
272
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
273
+ <i class="fas fa-tools text-indigo-600 text-2xl"></i>
274
+ </div>
275
+ <h3 class="text-xl font-bold mb-3">Practical Tools</h3>
276
+ <p class="text-gray-600">Access to no-code AI platforms you can start using immediately after the course.</p>
277
+ </div>
278
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
279
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
280
+ <i class="fas fa-network-wired text-indigo-600 text-2xl"></i>
281
+ </div>
282
+ <h3 class="text-xl font-bold mb-3">Strategic Framework</h3>
283
+ <p class="text-gray-600">A step-by-step approach to identifying AI opportunities in your organization.</p>
284
+ </div>
285
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
286
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
287
+ <i class="fas fa-comments text-indigo-600 text-2xl"></i>
288
+ </div>
289
+ <h3 class="text-xl font-bold mb-3">Confident Communication</h3>
290
+ <p class="text-gray-600">Speak knowledgeably about AI with technical teams and stakeholders.</p>
291
+ </div>
292
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
293
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
294
+ <i class="fas fa-lightbulb text-indigo-600 text-2xl"></i>
295
+ </div>
296
+ <h3 class="text-xl font-bold mb-3">Innovation Mindset</h3>
297
+ <p class="text-gray-600">Learn how to foster AI-driven innovation in your team or organization.</p>
298
+ </div>
299
+ <div class="border border-gray-200 rounded-xl p-8 hover:shadow-lg transition duration-300">
300
+ <div class="bg-indigo-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
301
+ <i class="fas fa-certificate text-indigo-600 text-2xl"></i>
302
+ </div>
303
+ <h3 class="text-xl font-bold mb-3">Certificate of Completion</h3>
304
+ <p class="text-gray-600">Earn a certificate to showcase your new AI competency.</p>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </div>
309
+
310
+ <!-- Testimonials Section -->
311
+ <div id="testimonials" class="py-20 bg-gray-50">
312
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
313
+ <div class="text-center mb-16">
314
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">What Our Participants Say</h2>
315
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear from professionals who transformed their understanding of AI in just one day.</p>
316
+ </div>
317
+
318
+ <div class="grid md:grid-cols-3 gap-8">
319
+ <div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
320
+ <div class="flex items-center mb-4">
321
+ <div class="text-yellow-400 mr-2">
322
+ <i class="fas fa-star"></i>
323
+ <i class="fas fa-star"></i>
324
+ <i class="fas fa-star"></i>
325
+ <i class="fas fa-star"></i>
326
+ <i class="fas fa-star"></i>
327
+ </div>
328
+ </div>
329
+ <p class="text-gray-600 italic mb-6">"I came in skeptical about understanding AI in one day, but the way concepts were broken down made it incredibly accessible. I'm now leading AI initiatives at my company."</p>
330
+ <div class="flex items-center">
331
+ <img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson">
332
+ <div>
333
+ <h4 class="font-bold">Sarah Johnson</h4>
334
+ <p class="text-gray-500 text-sm">Marketing Director</p>
335
+ </div>
336
+ </div>
337
+ </div>
338
+ <div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
339
+ <div class="flex items-center mb-4">
340
+ <div class="text-yellow-400 mr-2">
341
+ <i class="fas fa-star"></i>
342
+ <i class="fas fa-star"></i>
343
+ <i class="fas fa-star"></i>
344
+ <i class="fas fa-star"></i>
345
+ <i class="fas fa-star"></i>
346
+ </div>
347
+ </div>
348
+ <p class="text-gray-600 italic mb-6">"The afternoon workshop was transformative. We solved an actual business problem using AI approaches, and I implemented the solution the very next week."</p>
349
+ <div class="flex items-center">
350
+ <img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen">
351
+ <div>
352
+ <h4 class="font-bold">Michael Chen</h4>
353
+ <p class="text-gray-500 text-sm">Operations Manager</p>
354
+ </div>
355
+ </div>
356
+ </div>
357
+ <div class="testimonial-card bg-white p-8 rounded-xl shadow-md">
358
+ <div class="flex items-center mb-4">
359
+ <div class="text-yellow-400 mr-2">
360
+ <i class="fas fa-star"></i>
361
+ <i class="fas fa-star"></i>
362
+ <i class="fas fa-star"></i>
363
+ <i class="fas fa-star"></i>
364
+ <i class="fas fa-star"></i>
365
+ </div>
366
+ </div>
367
+ <p class="text-gray-600 italic mb-6">"Finally an AI course that doesn't assume I'm a data scientist! The real-world examples made all the difference in understanding how to apply these concepts."</p>
368
+ <div class="flex items-center">
369
+ <img class="w-12 h-12 rounded-full mr-4" src="https://randomuser.me/api/portraits/women/65.jpg" alt="Priya Patel">
370
+ <div>
371
+ <h4 class="font-bold">Priya Patel</h4>
372
+ <p class="text-gray-500 text-sm">HR Consultant</p>
373
+ </div>
374
+ </div>
375
+ </div>
376
+ </div>
377
+ </div>
378
+ </div>
379
+
380
+ <!-- Pricing Section -->
381
+ <div class="py-20 bg-indigo-600 text-white">
382
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
383
+ <div class="text-center mb-16">
384
+ <h2 class="text-3xl font-bold mb-4">Simple, Transparent Pricing</h2>
385
+ <p class="text-xl text-indigo-100 max-w-3xl mx-auto">One day that could transform your career and business.</p>
386
+ </div>
387
+
388
+ <div class="max-w-md mx-auto bg-white rounded-xl shadow-2xl overflow-hidden md:max-w-2xl">
389
+ <div class="md:flex">
390
+ <div class="p-8 w-full">
391
+ <div class="uppercase tracking-wide text-sm text-indigo-600 font-semibold mb-1">Full-Day Intensive</div>
392
+ <div class="flex items-baseline mt-2 mb-4">
393
+ <span class="text-5xl font-extrabold text-gray-900">$495</span>
394
+ <span class="ml-1 text-xl text-gray-600">per participant</span>
395
+ </div>
396
+ <ul class="mt-6 space-y-4 text-gray-600">
397
+ <li class="flex items-start">
398
+ <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
399
+ <span>8 hours of interactive training</span>
400
+ </li>
401
+ <li class="flex items-start">
402
+ <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
403
+ <span>Course materials and resources</span>
404
+ </li>
405
+ <li class="flex items-start">
406
+ <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
407
+ <span>Certificate of completion</span>
408
+ </li>
409
+ <li class="flex items-start">
410
+ <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
411
+ <span>30-day access to course recordings</span>
412
+ </li>
413
+ <li class="flex items-start">
414
+ <i class="fas fa-check-circle text-indigo-500 mt-1 mr-3"></i>
415
+ <span>Invitation to alumni network</span>
416
+ </li>
417
+ </ul>
418
+ <div class="mt-8">
419
+ <a href="#register" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-4 rounded-lg shadow-lg transition duration-300 block text-center">Enroll Now</a>
420
+ </div>
421
+ <p class="mt-4 text-sm text-gray-500 text-center">Group discounts available for 3+ participants</p>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+
428
+ <!-- FAQ Section -->
429
+ <div class="py-20 bg-white">
430
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
431
+ <div class="text-center mb-16">
432
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Frequently Asked Questions</h2>
433
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to know about the AI training course.</p>
434
+ </div>
435
+
436
+ <div class="max-w-3xl mx-auto">
437
+ <div class="space-y-4">
438
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
439
+ <button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
440
+ <span class="text-lg font-medium text-gray-900">Do I need any technical background to attend?</span>
441
+ <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
442
+ </button>
443
+ <div class="px-6 pb-6 hidden">
444
+ <p class="text-gray-600">Not at all! This course is specifically designed for non-technical professionals. We start from the very basics and use real-world analogies to explain concepts without any technical jargon.</p>
445
+ </div>
446
+ </div>
447
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
448
+ <button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
449
+ <span class="text-lg font-medium text-gray-900">What's the format of the training?</span>
450
+ <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
451
+ </button>
452
+ <div class="px-6 pb-6 hidden">
453
+ <p class="text-gray-600">The training is conducted live online via Zoom. The morning session focuses on understanding AI concepts through presentations and discussions. The afternoon is hands-on with group exercises and problem-solving workshops.</p>
454
+ </div>
455
+ </div>
456
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
457
+ <button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
458
+ <span class="text-lg font-medium text-gray-900">Will I need to install any software?</span>
459
+ <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
460
+ </button>
461
+ <div class="px-6 pb-6 hidden">
462
+ <p class="text-gray-600">No special software is required. We'll use browser-based tools that don't require installation. You'll receive all access details after registration.</p>
463
+ </div>
464
+ </div>
465
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
466
+ <button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
467
+ <span class="text-lg font-medium text-gray-900">Can I get a refund if I'm not satisfied?</span>
468
+ <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
469
+ </button>
470
+ <div class="px-6 pb-6 hidden">
471
+ <p class="text-gray-600">We offer a 100% satisfaction guarantee. If you're not completely satisfied with the training after the first hour, you can request a full refund.</p>
472
+ </div>
473
+ </div>
474
+ <div class="border border-gray-200 rounded-lg overflow-hidden">
475
+ <button class="w-full flex justify-between items-center p-6 text-left focus:outline-none">
476
+ <span class="text-lg font-medium text-gray-900">Will there be follow-up support after the course?</span>
477
+ <i class="fas fa-chevron-down text-indigo-600 transition-transform duration-300"></i>
478
+ </button>
479
+ <div class="px-6 pb-6 hidden">
480
+ <p class="text-gray-600">Yes! All participants get access to our alumni network and can join monthly Q&A sessions with our instructors for three months after the course.</p>
481
+ </div>
482
+ </div>
483
+ </div>
484
+ </div>
485
+ </div>
486
+ </div>
487
+
488
+ <!-- CTA Section -->
489
+ <div id="register" class="py-20 bg-gray-900 text-white">
490
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
491
+ <div class="md:flex md:items-center md:justify-between">
492
+ <div class="md:w-1/2 mb-10 md:mb-0">
493
+ <h2 class="text-3xl font-bold mb-6">Ready to Demystify AI?</h2>
494
+ <p class="text-xl text-gray-300 mb-8">Join our next training session and gain the AI knowledge you need to stay competitive in today's business landscape.</p>
495
+ <div class="flex items-center">
496
+ <i class="fas fa-calendar-alt text-indigo-400 text-2xl mr-4"></i>
497
+ <div>
498
+ <div class="font-bold">Next Session:</div>
499
+ <div class="text-gray-300">June 15, 2023 | 9:00 AM - 5:00 PM (EST)</div>
500
+ </div>
501
+ </div>
502
+ </div>
503
+ <div class="md:w-1/2">
504
+ <div class="bg-white rounded-lg shadow-xl p-8 text-gray-800">
505
+ <h3 class="text-2xl font-bold mb-6">Register Now</h3>
506
+ <form>
507
+ <div class="mb-4">
508
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="name">Full Name</label>
509
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500" id="name" type="text" placeholder="Your name">
510
+ </div>
511
+ <div class="mb-4">
512
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="email">Email</label>
513
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500" id="email" type="email" placeholder="your@email.com">
514
+ </div>
515
+ <div class="mb-6">
516
+ <label class="block text-gray-700 text-sm font-bold mb-2" for="company">Company (Optional)</label>
517
+ <input class="w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-indigo-500" id="company" type="text" placeholder="Your company">
518
+ </div>
519
+ <button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-bold py-3 px-4 rounded-md transition duration-300" type="button">
520
+ Secure My Spot
521
+ </button>
522
+ </form>
523
+ <p class="mt-4 text-sm text-gray-500 text-center">You'll receive confirmation and details within 24 hours.</p>
524
+ </div>
525
+ </div>
526
+ </div>
527
+ </div>
528
+ </div>
529
+
530
+ <!-- Footer -->
531
+ <footer class="bg-gray-800 text-white py-12">
532
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
533
+ <div class="grid md:grid-cols-4 gap-8">
534
+ <div>
535
+ <h3 class="text-lg font-semibold mb-4">Altaire AI Training</h3>
536
+ <p class="text-gray-400">Empowering non-technical professionals with practical AI knowledge since 2018.</p>
537
+ </div>
538
+ <div>
539
+ <h3 class="text-lg font-semibold mb-4">Quick Links</h3>
540
+ <ul class="space-y-2">
541
+ <li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About</a></li>
542
+ <li><a href="#course" class="text-gray-400 hover:text-white transition duration-300">Course Details</a></li>
543
+ <li><a href="#benefits" class="text-gray-400 hover:text-white transition duration-300">Benefits</a></li>
544
+ <li><a href="#register" class="text-gray-400 hover:text-white transition duration-300">Register</a></li>
545
+ </ul>
546
+ </div>
547
+ <div>
548
+ <h3 class="text-lg font-semibold mb-4">Contact</h3>
549
+ <ul class="space-y-2 text-gray-400">
550
+ <li class="flex items-center">
551
+ <i class="fas fa-envelope mr-2"></i>
552
+ <span>training@altiare.com</span>
553
+ </li>
554
+ <li class="flex items
555
+ </html>