Changeset 50f2fb4 for src/components/navbar.tsx
- Timestamp:
- 01/30/26 01:40:27 (8 months ago)
- Branches:
- master
- Children:
- ba52069
- Parents:
- 298f9b3
- File:
-
- 1 edited
-
src/components/navbar.tsx (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/components/navbar.tsx
r298f9b3 r50f2fb4 10 10 import { useState } from 'react'; 11 11 import Link from 'next/link'; 12 import { useTranslation } from 'react-i18next'; 12 13 13 14 const Navbar = () => { … … 18 19 }; 19 20 21 const { t } = useTranslation(); 20 22 const menuItems = [ 21 { icon: faUser, label: 'Профил', href: '/students/profile' },22 { icon: faBookmark, label: 'Семестри', href: '/students/semesters' },23 { icon: faBook, label: 'Предмети', href: '/students/subjects' },24 { icon: faPenToSquare, label: 'Пријави', href: '/students/applications' },25 { icon: faListCheck, label: 'Положени', href: '/students/exams' },26 { icon: faFilePdf, label: 'Документи', href: '/students/documents' }23 { icon: faUser, label: t('profile'), href: '/students/profile' }, 24 { icon: faBookmark, label: t('semesters'), href: '/students/semesters' }, 25 { icon: faBook, label: t('subjects'), href: '/students/subjects' }, 26 { icon: faPenToSquare, label: t('applications'), href: '/students/applications' }, 27 { icon: faListCheck, label: t('exams'), href: '/students/exams' }, 28 { icon: faFilePdf, label: t('documents'), href: '/students/documents' } 27 29 ]; 28 30
Note:
See TracChangeset
for help on using the changeset viewer.
