"use client" import { Button, cn } from "@heroui/react" import { Home, MonitorOne, Movie, Setting, Terminal, Toolkit, } from "@icon-park/react" import { usePathname, useRouter } from "next/navigation" import type { ReactNode } from "react" // import { platform } from "@tauri-apps/plugin-os" import { useAppStore } from "@/store/app" interface SideButtonProps { route: string className?: string children?: ReactNode } const SideButton = ({ route, className, children, ...rest }: SideButtonProps & React.ButtonHTMLAttributes) => { const router = useRouter() const path = usePathname() return ( ) } const Avatar = () => { const router = useRouter() const path = usePathname() return ( ) } const SideBar = () => { const app = useAppStore() return (

版本号

) } export default SideBar