diff --git a/src/app/pathway/leadership/page.tsx b/src/app/pathway/leadership/page.tsx new file mode 100644 index 0000000..b3c156d --- /dev/null +++ b/src/app/pathway/leadership/page.tsx @@ -0,0 +1,147 @@ +"use client"; +import { ThemeProvider } from "@/components/theme/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroSignup from "@/components/sections/hero/HeroSignup"; +import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; +import TimelineCardStack from "@/components/cardStack/layouts/timelines/TimelineCardStack"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Crown, Sparkles, Users, Heart, Zap } from "lucide-react"; + +export default function LeadershipPathway() { + return ( + + + +
+ console.log("Email:", email)} + /> +
+ +
+ +
+ +
+ +
+

Weeks 1-2: Self-Leadership

+

Understand yourself first. Build self-awareness. Define your values. Identify your leadership style. Lead yourself before you lead others. +

+
+
+

Weeks 3-4: Influencing Without Authority

+

Lead peers and stakeholders. Build influence through trust. Navigate organizational dynamics. Make an impact without a title. +

+
+
+

Weeks 5-6: Team Building & Culture

+

Build high-performing teams. Develop talent. Create psychological safety. Build cultures where people do their best work. +

+
+
+

Weeks 7-8: Vision & Impact

+

Create your leadership vision. Drive strategic initiatives. Create positive change. Launch your leadership journey. +

+
+
+
+ +
+ +
+ + +
+ ); +}