'use client' import type { ReactNode } from 'react' import { useTranslation } from 'react-i18next' import { DifyLogo } from '@/app/components/base/logo/dify-logo' import useDocumentTitle from '@/hooks/use-document-title' type EducationShellProps = { children: ReactNode } export default function EducationShell({ children }: EducationShellProps) { const { t } = useTranslation() const pageTitle = t(($) => $.toVerified, { ns: 'education' }) useDocumentTitle(pageTitle) return (
) }