diff --git a/src/components/layout/player-app-shell.tsx b/src/components/layout/player-app-shell.tsx index 0278657..0bfaf96 100644 --- a/src/components/layout/player-app-shell.tsx +++ b/src/components/layout/player-app-shell.tsx @@ -1,13 +1,9 @@ "use client"; -import Link from "next/link"; import type { ReactNode } from "react"; -import { useTranslation } from "react-i18next"; -import { LanguageSwitcher } from "@/components/language-switcher"; import { NetworkStatusBanner } from "@/components/network-status-banner"; import { PlayerBottomNav } from "@/components/layout/player-bottom-nav"; -import { PlayerSessionBar } from "@/features/player/player-session-bar"; type PlayerAppShellProps = { children: ReactNode; @@ -21,25 +17,10 @@ type PlayerAppShellProps = { * 这里的 NetworkStatusBanner 仅用于 WebSocket 状态显示 */ export function PlayerAppShell({ children }: PlayerAppShellProps): ReactNode { - const { t } = useTranslation("layout"); - return ( -