gitextract_j5k2gb1j/ ├── .eslintrc.json ├── .gitignore ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.js ├── src/ │ ├── app/ │ │ ├── contact/ │ │ │ └── page.tsx │ │ ├── courses/ │ │ │ └── page.tsx │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components/ │ │ ├── FeaturedCourses.tsx │ │ ├── Footer.tsx │ │ ├── HeroSection.tsx │ │ ├── Instructors.tsx │ │ ├── Navbar.tsx │ │ ├── TestimonialCards.tsx │ │ ├── UpcomingWebinars.tsx │ │ ├── WhyChooseUs.tsx │ │ └── ui/ │ │ ├── 3d-card.tsx │ │ ├── Spotlight.tsx │ │ ├── animated-tooltip.tsx │ │ ├── background-beams.tsx │ │ ├── background-gradient.tsx │ │ ├── card-hover-effect.tsx │ │ ├── infinite-moving-cards.tsx │ │ ├── moving-border.tsx │ │ ├── navbar-menu.tsx │ │ ├── sticky-scroll-reveal.tsx │ │ └── wavy-background.tsx │ ├── data/ │ │ └── music_courses.json │ └── utils/ │ └── cn.ts ├── tailwind.config.ts └── tsconfig.json