import CourseCard5 from '@/components/cards/course-card-5'; import { getPageSection } from '@/lib/page'; import { IntroPageProps } from '@/types/page'; import { usePage } from '@inertiajs/react'; import Section from '../section'; const TopCourses = () => { const { props } = usePage(); const { page, topCourses, customize } = props; const topCoursesSection = getPageSection(page, 'top_courses'); return (

{topCoursesSection?.title}

{topCoursesSection?.sub_title}

{topCoursesSection?.description}

{topCourses.map((course) => ( ))}
); }; export default TopCourses;