import { Icon } from '@/components/icon'; import { SidebarGroup, SidebarGroupContent, SidebarMenu, SidebarMenuButton, SidebarMenuItem } from '@/components/ui/sidebar'; import { BookOpen, Folder } from 'lucide-react'; import { type ComponentPropsWithoutRef } from 'react'; const footerNavItems = [ { title: 'Repository', href: 'https://github.com/laravel/react-starter-kit', icon: Folder, }, { title: 'Documentation', href: 'https://laravel.com/docs/starter-kits', icon: BookOpen, }, ]; export function NavFooter({ className, ...props }: ComponentPropsWithoutRef) { return ( {footerNavItems.map((item) => ( {item.icon && } {item.title} ))} ); }