import { Helmet } from "react-helmet-async"; import HeroSection from "@/components/HeroSection"; import BenefitsSection from "@/components/BenefitsSection"; import ProgramSection from "@/components/ProgramSection"; import TestimonialsSection from "@/components/TestimonialsSection"; import CTASection from "@/components/CTASection"; import Footer from "@/components/Footer"; import { useAnalytics } from "@/hooks/useAnalytics"; const Index = () => { // Initialize analytics and track page views useAnalytics(); return ( <> Corso Project Management Online | Certificazione PMP® | PM Academy
); }; export default Index;