Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526
  1. 'use client'
  2. import { useEducationInit } from '@/app/education-apply/hooks'
  3. import { useGlobalPublicStore } from '@/context/global-public-context'
  4. import List from './list'
  5. import Footer from './footer'
  6. import useDocumentTitle from '@/hooks/use-document-title'
  7. import { useTranslation } from 'react-i18next'
  8. const Apps = () => {
  9. const { t } = useTranslation()
  10. const { systemFeatures } = useGlobalPublicStore()
  11. useDocumentTitle(t('common.menus.apps'))
  12. useEducationInit()
  13. return (
  14. <div className='relative flex h-0 shrink-0 grow flex-col overflow-y-auto bg-background-body'>
  15. <List />
  16. {!systemFeatures.branding.enabled && (
  17. <Footer />
  18. )}
  19. </div >
  20. )
  21. }
  22. export default Apps