"use client";
import * as React from "react";
import { NavDocuments } from "@/components/nav-documents";
import { NavMain } from "@/components/nav-main";
import { NavSecondary } from "@/components/nav-secondary";
import { NavUser } from "@/components/nav-user";
import {
Sidebar,
SidebarContent,
SidebarFooter,
SidebarHeader,
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
} from "@/components/ui/sidebar";
import {
LayoutDashboardIcon,
ListIcon,
ChartBarIcon,
FolderIcon,
UsersIcon,
CameraIcon,
FileTextIcon,
Settings2Icon,
CircleHelpIcon,
SearchIcon,
DatabaseIcon,
FileChartColumnIcon,
FileIcon,
CommandIcon,
ImageIcon,
ImagesIcon,
} from "lucide-react";
const data = {
user: {
name: "Wallora Admin",
email: "admin@wallora.top",
avatar: "/avatars/shadcn.jpg",
},
navMain: [
{
title: "Dashboard",
url: "/admin/dashboard",
icon: ,
},
{
title: "Gallery",
url: "/admin/gallery",
icon: ,
},
{
title: "Collections",
url: "/admin/collections",
icon: ,
},
{
title: "Lifecycle",
url: "#",
icon: ,
},
{
title: "Analytics",
url: "#",
icon: ,
},
{
title: "Projects",
url: "#",
icon: ,
},
{
title: "Users",
url: "/admin/users",
icon: ,
},
],
navClouds: [
{
title: "Capture",
icon: ,
isActive: true,
url: "#",
items: [
{
title: "Active Proposals",
url: "#",
},
{
title: "Archived",
url: "#",
},
],
},
{
title: "Proposal",
icon: ,
url: "#",
items: [
{
title: "Active Proposals",
url: "#",
},
{
title: "Archived",
url: "#",
},
],
},
{
title: "Prompts",
icon: ,
url: "#",
items: [
{
title: "Active Proposals",
url: "#",
},
{
title: "Archived",
url: "#",
},
],
},
],
navSecondary: [
{
title: "Settings",
url: "#",
icon: ,
},
{
title: "Get Help",
url: "#",
icon: ,
},
{
title: "Search",
url: "#",
icon: ,
},
],
documents: [
{
name: "Data Library",
url: "#",
icon: ,
},
{
name: "Reports",
url: "#",
icon: ,
},
{
name: "Word Assistant",
url: "#",
icon: ,
},
],
};
export function AppSidebar({ ...props }: React.ComponentProps) {
return (
}
>
Wallora
);
}