// app/routes/academy.tsx
import { useEffect } from "react";
import { gsap } from "gsap";
export default function Academy() {
useEffect(() => {
gsap.from(".enroll-card", { y: 120, opacity: 0, duration: 1.6, ease: "power4.out" });
}, []);
return (
{/* same nav as above */}
8-WEEK COHORT • STARTS MARCH 3 2026
Master Directed Intelligence
Build your own GSO system. Live labs. Lifetime tools.
$4,800
or 4 payments of $1,300
- ✓ Full GSO Roadmap Blueprint
- ✓ Weekly live schema & entity workshops
- ✓ Private Notion workspace + Discord
- ✓ Lifetime access to all Swell tools
- ✓ 1:1 strategy session with the team
Enroll Agent Now →
Only 12 spots per cohort
);
}