-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (116 loc) · 3.63 KB
/
index.html
File metadata and controls
123 lines (116 loc) · 3.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Building AI-Powered Applications Workshop</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="container">
<a href="#" class="logo">AI Workshop</a>
<div class="nav-links">
<a href="#curriculum">Curriculum</a>
<a href="#benefits">Benefits</a>
<a href="#schedule">Schedule</a>
<a href="#faq">FAQ</a>
<a href="#register" class="cta-button">Register Now</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Building AI-Powered Applications</h1>
<h2>From Zero to AI Agent Mastery</h2>
<p class="hero-subtitle">
Master the art of building AI applications in JavaScript through
hands-on learning and real-world projects
</p>
<a href="#register" class="cta-button">Secure Your Spot</a>
</div>
</section>
<!-- Social Proof -->
<section class="social-proof">
<div class="container">
<div class="stats">
<div class="stat-item">
<h3>7</h3>
<p>Interactive Sessions</p>
</div>
<div class="stat-item">
<h3>20+</h3>
<p>Hands-on Projects</p>
</div>
<div class="stat-item">
<h3>100%</h3>
<p>Practical Learning</p>
</div>
</div>
</div>
</section>
<!-- Key Features -->
<section class="features">
<div class="container">
<h2>What You'll Learn</h2>
<div class="feature-grid">
<div class="feature-card">
<img src="ai-basics-icon.svg" alt="AI Basics" />
<h3>AI Foundations</h3>
<p>Master core AI concepts and modern development workflows</p>
</div>
<div class="feature-card">
<img src="prompt-icon.svg" alt="Prompt Engineering" />
<h3>Prompt Engineering</h3>
<p>Learn to craft effective prompts for precise AI outputs</p>
</div>
<div class="feature-card">
<img src="tools-icon.svg" alt="AI Tools" />
<h3>AI Development Stack</h3>
<p>Build with LangChain, vector databases, and LLMs</p>
</div>
</div>
</div>
</section>
<!-- Curriculum Overview -->
<section class="curriculum" id="curriculum">
<div class="container">
<h2>Comprehensive Curriculum</h2>
<div class="session-grid">
<!-- Session cards for each of the 7 sessions -->
</div>
</div>
</section>
<!-- Benefits -->
<section class="benefits" id="benefits">
<div class="container">
<h2>Why Join This Workshop?</h2>
<div class="benefits-grid">
<div class="benefit-card">
<h3>Practical Skills</h3>
<p>Build real AI applications from day one</p>
</div>
<!-- More benefit cards -->
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<h2>Ready to Master AI Development?</h2>
<p>
Join our workshop and start building AI-powered applications today
</p>
<a href="#register" class="cta-button">Register Now</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<!-- Footer content -->
</div>
</footer>
</body>
</html>