import React from 'react';
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import { CheckCircle, Calendar, Users, Award, BookOpen, Target, Shield, Zap } from 'lucide-react';
const Index = () => {
const learningOutcomes = [
"Decode the language of AI—differentiate AI, ML, DL, GenAI",
"Evaluate AI opportunities & risks in their own domain",
"Design a high-level AI project charter and governance plan",
"Communicate with technical teams & vendors using correct concepts",
"Champion ethical, human-centered AI adoption"
];
const weeklyModules = [
{ week: 1, title: "Why AI, Why Now?", focus: "AI timeline & reality check" },
{ week: 2, title: "Core Concepts without Code", focus: "Neural nets in plain English" },
{ week: 3, title: "Data & Ethics", focus: "Bias, fairness & EU AI Act" },
{ week: 4, title: "AI in Business Functions", focus: "Ops, Marketing, HR, Finance" },
{ week: 5, title: "Generative AI Essentials", focus: "LLMs & prompt engineering" },
{ week: 6, title: "From Idea to Pilot", focus: "Vendor landscape & ROI" },
{ week: 7, title: "Risk, Governance & Regulation", focus: "Model cards & audits" },
{ week: 8, title: "Capstone & The Road Ahead", focus: "Future trends & presentations" }
];
const testimonials = [
{
quote: "This program transformed how I approach AI strategy. Now I can confidently lead AI initiatives without needing to code.",
author: "Sarah Chen",
role: "VP Strategy, Fortune 500 Healthcare"
},
{
quote: "The perfect blend of technical insight and business practicality. My team now speaks the same AI language.",
author: "Marcus Rodriguez",
role: "Chief Innovation Officer, Financial Services"
}
];
return (
{/* Hero Section */}
Premium Executive Education
AI Foundations for
Non-Technical Leaders
A premium-level online program inspired by MIT Executive Education.
Master AI strategy without writing a single line of code.
8 weeks, 3-4 hrs/week
Executive-level cohort
{/* Learning Outcomes */}
What You'll Master
By the end of this program, you'll have the confidence and knowledge to lead AI initiatives in your organization.
{learningOutcomes.map((outcome, index) => (
))}
{/* Course Curriculum */}
8-Week Curriculum
Carefully designed modules that build your AI leadership capabilities progressively.
{weeklyModules.map((module, index) => (
Week {module.week}
{module.title}
{module.focus}
))}
{/* Pedagogical Approach */}
Our Teaching Philosophy
Designed for busy executives with proven pedagogical principles.
Story-First
Every concept anchored in real business cases you can relate to.
Micro-Learning
Videos ≤ 8 min, text chunks ≤ 300 words. Fits your schedule.
Show-Then-Do
Every lesson ends with hands-on, code-free demos.
{/* Testimonials */}
What Leaders Are Saying
{testimonials.map((testimonial, index) => (
"{testimonial.quote}"
{testimonial.author}
{testimonial.role}
))}
{/* CTA Section */}
Ready to Lead AI Transformation?
Join the next cohort of executive leaders mastering AI strategy without the technical complexity.
{/* Footer */}
);
};