diff --git a/src/components/navigation.tsx b/src/components/navigation.tsx index aeba3ae..c532e02 100644 --- a/src/components/navigation.tsx +++ b/src/components/navigation.tsx @@ -109,20 +109,20 @@ export function Navigation() { @@ -152,6 +152,30 @@ export function Navigation() { const ListItem = React.forwardRef< React.ElementRef<"a">, React.ComponentPropsWithoutRef<"a"> +>(({ className, title, children, ...props }, ref) => { + return ( +
  • + + +
    {title}
    +

    + {children} +

    +
    +
    +
  • + ); +}); +const ListItem2 = React.forwardRef< + React.ElementRef<"a">, + React.ComponentPropsWithoutRef<"a"> >(({ className, title, children, ...props }, ref) => { return (
  • @@ -175,3 +199,4 @@ const ListItem = React.forwardRef< ); }); ListItem.displayName = "ListItem"; +ListItem.displayName = "ListItem2";