This commit is contained in:
User
2024-12-31 20:17:35 -05:00
parent 3a1d4cc40a
commit 9777e46316
10 changed files with 13376 additions and 58 deletions

View File

@@ -1,7 +1,7 @@
import { useState } from 'react';
import { Link, router, usePage } from '@inertiajs/react';
import { BadgeCheck, ChevronsUpDown, Star, History, ChevronDown, LogOut, Search, Book, TableOfContents } from 'lucide-react';
import { BadgeCheck, ChevronsUpDown, Star, History, ChevronDown, LogOut, Search, Book, TableOfContents, House, HardDriveDownload } from 'lucide-react';
import { Avatar, AvatarFallback } from '@/components/ui/avatar';
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from '@/components/ui/collapsible';
@@ -57,7 +57,7 @@ export function AppSidebar({ auth }) {
</div>
<div className="flex flex-col gap-0.5 leading-none">
<span className="font-semibold">Comic</span>
<span>0.0.1</span>
<span>0.0.2</span>
</div>
</Link>
</SidebarMenuButton>
@@ -80,8 +80,24 @@ export function AppSidebar({ auth }) {
<SidebarMenuItem>
<SidebarMenuButton asChild>
<Link href={ route('comics.index')}>
<House />
<span>Index</span>
</Link>
</SidebarMenuButton>
</SidebarMenuItem>
<SidebarMenuItem>
<SidebarMenuButton asChild>
<Link href={ route('pages.show', ['Installation'])}>
<HardDriveDownload />
<span>Installation</span>
</Link>
</SidebarMenuButton>
</SidebarMenuItem>
<SidebarMenuItem>
<SidebarMenuButton asChild>
<Link href={ route('pages.show', ['Updates'])}>
<TableOfContents />
<span>Manual</span>
<span>Updates and notes</span>
</Link>
</SidebarMenuButton>
</SidebarMenuItem>