import { Book, ChevronRight } from 'lucide-react' import Link from 'next/link' import { getUriWithOrg } from '@services/config/config' import React from 'react' interface CourseBreadcrumbsProps { course: any orgslug: string } export default function CourseBreadcrumbs({ course, orgslug }: CourseBreadcrumbsProps) { const cleanCourseUuid = course.course_uuid?.replace('course_', '') return (
Courses
{course.name}
) }