"use client"
import { usePathname } from "next/navigation"
import { MobileNav } from "@/components/layout/mobile-nav"
/**
* 应用外壳:C 端为移动端(窄屏 + 底部导航),管理后台 /admin 为纯 PC(全宽、无底部导航)
*/
export function AppShell({ children }: { children: React.ReactNode }) {
const pathname = usePathname()
const isAdmin = pathname?.startsWith("/admin")
if (isAdmin) {
return <>{children}>
}
return (
<>
{children}
>
)
}