import { BouncyAccordion } from "@/components/ui/bouncy-accordion"
import { Bell, Shield } from "lucide-react"const items = [
{
id: "security",
title: "Security & Privacy",
description: "Manage your password, two-factor authentication, and connected devices.",
icon: <Shield className="h-4 w-4" />,
},
{
id: "notifications",
title: "Push Notifications",
description: "Choose which product updates and activity alerts you want to receive.",
icon: <Bell className="h-4 w-4" />,
}
];
export default function App() {
return <BouncyAccordion items={items} defaultValue="notifications" />
}