"use client" import { siteConfig } from "@/config/site" import * as React from "react" import { BookOpen, Command, Frame, LifeBuoy, Map, PieChart, Send, Settings2, SquareTerminal, } from "lucide-react" import { NavMain } from "@/components/nav-main" import { NavProjects } from "@/components/nav-projects" import { NavSecondary } from "@/components/nav-secondary" import { NavUser } from "@/components/nav-user" import { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarMenu, SidebarMenuButton, SidebarMenuItem, } from "@/components/ui/sidebar" const data = { user: { name: "shadcn", email: "m@example.com", avatar: "/avatars/shadcn.jpg", }, navMain: [ { title: "Dashboard", url: "#", icon: SquareTerminal, isActive: true, items: [ { title: "Home", url: "/", }, { title: "Personal interface", url: "#", }, { title: "Problems", url: "/problemset", }, ], }, { title: "Done Topics", url: "#", icon: BookOpen, items: [ { title: "All Coding", url: "#", }, { title: "Correct Codingset", url: "#", }, { title: "Wrong Codingset", url: "#", }, ], }, { title: "Settings", url: "#", icon: Settings2, items: [ { title: "General", url: "#", }, { title: "Language", url: "#", }, ], }, ], navSecondary: [ { title: "Support", url: "/", icon: LifeBuoy, }, { title: "Feedback", url: siteConfig.url.repo.github, icon: Send, }, ], projects: [ { name: "Design Engineering", url: "#", icon: Frame, }, { name: "Sales & Marketing", url: "#", icon: PieChart, }, { name: "Travel", url: "#", icon: Map, }, ], } export function AppSidebar({ ...props }: React.ComponentProps) { return (
Judge4c Programming Learning
) }