import { BounceSidebar } from "@/components/ui/bounce-sidebar"const items = [
{ id: "overview", label: "Overview" },
{ id: "components", label: "Components" },
{ id: "motion", label: "Motion" },
]
export default function Page() {
return <BounceSidebar items={items} defaultValue="overview" />
}