import { Button } from "@/components/ui/button" // 导入分隔线组件 import { Separator } from "@/components/ui/separator" // 导入侧边栏触发器组件 import { SidebarTrigger } from "@/components/ui/sidebar" // 导入通知抽屉组件 import { NotificationDrawer } from "@/components/notifications" // 导入颜色主题切换组件 import { ColorThemeSwitcher } from "@/components/color-theme-switcher" // 导入快速扫描组件 import { QuickScanDialog } from "@/components/scan/quick-scan-dialog" /** * 网站头部组件 * 显示在页面顶部,包含侧边栏切换按钮、页面标题和外部链接 */ export function SiteHeader() { return ( // header 元素,使用 flex 布局水平排列内容
{/* 内容容器,占据整个宽度 */}
{/* 侧边栏切换按钮,带有负左边距以对齐 */} {/* 右侧按钮区域,使用 ml-auto 推到最右边 */}
{/* 快速扫描按钮 */} {/* 通知抽屉按钮 */} {/* 颜色主题切换按钮 */} {/* GitHub 链接按钮,在小屏幕上隐藏 */}
) }