🎉 Gitea Mirror: Added

This commit is contained in:
Arunavo Ray
2025-05-18 09:31:23 +05:30
commit 5d40023de0
139 changed files with 22033 additions and 0 deletions

16
src/data/Sidebar.ts Normal file
View File

@@ -0,0 +1,16 @@
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 },
];