"use client" import { ChevronRight } from "lucide-react" import { useMaterial } from "@/contexts/material-context" import { cn } from "@/lib/utils" import { ComponentContainer } from "@/components/ui/component-container" import { SectionHeading } from "@/components/ui/section-heading" export function BreadcrumbsSection() { const { selectedMaterial } = useMaterial() // Remove the reference to getThemeAwareClass since it doesn't exist // Instead, we'll use a simple class based on the material const materialClass = selectedMaterial ? selectedMaterial.cssClass : "" const breadcrumbsCode = `` return ( ) }