"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { STUDY_MODES } from "@/config/studyModes"; interface ClassTabsProps { classSlug: string; } export function ClassTabs({ classSlug }: ClassTabsProps) { const pathname = usePathname(); return (
); }