'use client'; import React from 'react'; import { Box, Typography, Tooltip } from '@mui/material'; import { useTranslation } from 'react-i18next'; import * as styles from './styles'; /** * Logo 组件 * 显示应用 Logo 和标题,支持点击跳转到首页 */ export default function Logo({ theme }) { const { t } = useTranslation(); return ( { e.preventDefault(); window.location.href = '/'; }} onKeyDown={e => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); window.location.href = '/'; } }} > Easy DataSet ); }