Changeset 50f2fb4 for src/components/professor-navbar.tsx
- Timestamp:
- 01/30/26 01:40:27 (8 months ago)
- Branches:
- master
- Children:
- ba52069
- Parents:
- 298f9b3
- File:
-
- 1 edited
-
src/components/professor-navbar.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/components/professor-navbar.tsx
r298f9b3 r50f2fb4 5 5 import Link from "next/link"; 6 6 import { useState } from "react"; 7 import { useTranslation } from 'react-i18next'; 7 8 8 9 const ProfessorNavbar = () => { … … 13 14 }; 14 15 16 const { t } = useTranslation(); 15 17 const menuItems = [ 16 { icon: faUser, label: "Профил", href: "/professor/profile" },17 { icon: faUsers, label: "Студенти", href: "/professor/students" },18 { icon: faUser, label: t('profile'), href: "/professor/profile" }, 19 { icon: faUsers, label: t('students') || 'Студенти', href: "/professor/students" }, 18 20 ]; 19 21
Note:
See TracChangeset
for help on using the changeset viewer.
