mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2026-06-20 18:15:50 +02:00
17 lines
518 B
TypeScript
17 lines
518 B
TypeScript
import {
|
|
LayoutDashboard,
|
|
GitFork,
|
|
Settings,
|
|
Activity,
|
|
Building2,
|
|
} from "lucide-react";
|
|
import type { SidebarItem } from "@/types/Sidebar";
|
|
|
|
export const links: SidebarItem[] = [
|
|
{ href: "/", label: "Dashboard", icon: LayoutDashboard },
|
|
{ href: "/repositories", label: "Repositories", icon: GitFork },
|
|
{ href: "/organizations", label: "Organizations", icon: Building2 },
|
|
{ href: "/config", label: "Configuration", icon: Settings },
|
|
{ href: "/activity", label: "Activity Log", icon: Activity },
|
|
];
|