Components
A circular navigation menu with animated pointer and expanding buttons for smooth interactive transitions.
Loading preview...
import { Component } from "@/components/ui/radial-nav";
import { Bookmark, LayoutGrid, User } from 'lucide-react';
const ITEMS = [
{ id: 1, icon: LayoutGrid, label: 'Projects', angle: 0 },
{ id: 2, icon: Bookmark, label: 'Bookmarks', angle: -115 },
{ id: 3, icon: User, label: 'About', angle: 115 },
];
export default function DemoOne() {
return <Component items={ITEMS} defaultActiveId={1} />;
}