'use client' import {PanelLeftCloseIcon, PanelLeftOpenIcon} from 'lucide-react' import {Button} from '@/components/ui/button' import {useLayoutStore} from '@/app/stores' import {merge} from '@/lib/utils' import UserCenter from '@/components/composites/user-center' import {User} from '@/lib/models' export type HeaderProps = { profile: User } export default function Header(props: HeaderProps) { const navbar = useLayoutStore(store => store.navbar) const toggleNavbar = useLayoutStore(store => store.toggleNavbar) return (
{/* left */}
欢迎来到,蓝狐代理
{/* right */}
) }