Spaces:
Running
Running
Commit ·
d893ab4
1
Parent(s): d6b424d
feat: Add GenAI & Agentic AI card to main homepage + update subtitle
Browse files- index.html +24 -1
index.html
CHANGED
|
@@ -188,6 +188,16 @@
|
|
| 188 |
.dl2-card:hover {
|
| 189 |
border-color: #ff9a5c;
|
| 190 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
</style>
|
| 192 |
</head>
|
| 193 |
|
|
@@ -195,7 +205,7 @@
|
|
| 195 |
<div class="container">
|
| 196 |
<header>
|
| 197 |
<h1>Data Science & AI Masterclass</h1>
|
| 198 |
-
<p class="subtitle">Comprehensive curriculum from Fundamentals to
|
| 199 |
</header>
|
| 200 |
|
| 201 |
<div class="grid">
|
|
@@ -226,6 +236,19 @@
|
|
| 226 |
</div>
|
| 227 |
</a>
|
| 228 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 229 |
<a href="ml_complete-all-topics/index.html" class="card ml-card">
|
| 230 |
<div>
|
| 231 |
<span class="badge">Core</span>
|
|
|
|
| 188 |
.dl2-card:hover {
|
| 189 |
border-color: #ff9a5c;
|
| 190 |
}
|
| 191 |
+
|
| 192 |
+
.genai-card .badge {
|
| 193 |
+
background: rgba(88, 166, 255, 0.15);
|
| 194 |
+
color: #58a6ff;
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
.genai-card:hover {
|
| 198 |
+
border-color: #58a6ff;
|
| 199 |
+
box-shadow: 0 8px 24px rgba(88,166,255,0.15);
|
| 200 |
+
}
|
| 201 |
</style>
|
| 202 |
</head>
|
| 203 |
|
|
|
|
| 205 |
<div class="container">
|
| 206 |
<header>
|
| 207 |
<h1>Data Science & AI Masterclass</h1>
|
| 208 |
+
<p class="subtitle">Comprehensive curriculum from Fundamentals to GenAI & Agentic AI</p>
|
| 209 |
</header>
|
| 210 |
|
| 211 |
<div class="grid">
|
|
|
|
| 236 |
</div>
|
| 237 |
</a>
|
| 238 |
|
| 239 |
+
<!-- GenAI & Agentic AI -->
|
| 240 |
+
<a href="GenAI-AgenticAI/index.html" class="card genai-card">
|
| 241 |
+
<div>
|
| 242 |
+
<span class="badge">🤖 New</span>
|
| 243 |
+
<h2>GenAI & Agentic AI Masterclass</h2>
|
| 244 |
+
<p>LLMs, RAG, Vector DBs, AI Agents, LangChain, MCP, A2A Protocols, and Production deployment. Complete theory, code, and interview prep.</p>
|
| 245 |
+
</div>
|
| 246 |
+
<div class="card-footer">
|
| 247 |
+
<span style="color: #58a6ff">Explore GenAI</span>
|
| 248 |
+
<span class="arrow">→</span>
|
| 249 |
+
</div>
|
| 250 |
+
</a>
|
| 251 |
+
|
| 252 |
<a href="ml_complete-all-topics/index.html" class="card ml-card">
|
| 253 |
<div>
|
| 254 |
<span class="badge">Core</span>
|