import { Section } from "./Section"; import { INSTRUCTORS_CONFIG } from "@/config/course"; export function InstructorsSection() { return (

{INSTRUCTORS_CONFIG.title}

{INSTRUCTORS_CONFIG.subtitle}

{INSTRUCTORS_CONFIG.items.map((i) => (
{i.name.slice(0, 1)}

{i.name}

{i.role}

{i.desc}

{i.tag}
))}
); }