Skip to content

Commit 8b4ce6d

Browse files
authored
Merge pull request #43 from codeunia-dev/admin/formentries
Enhancement: Add new sidebar items for form entries in Admin layout
2 parents c2748d1 + 205f90b commit 8b4ce6d

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

app/admin/layout.tsx

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ import {
1515
MessageSquare,
1616
Trophy,
1717
Database,
18+
Handshake,
19+
Target,
20+
GraduationCap,
21+
Gavel,
22+
HandHeart,
1823
} from "lucide-react"
1924
import { useAuth } from "@/lib/hooks/useAuth"
2025

@@ -59,6 +64,36 @@ const sidebarItems: SidebarGroupType[] = [
5964
},
6065
],
6166
},
67+
{
68+
title: "Form Entries",
69+
items: [
70+
{
71+
title: "Collaboration",
72+
url: "/admin/forms/collaboration",
73+
icon: Handshake,
74+
},
75+
{
76+
title: "Sponsorship",
77+
url: "/admin/forms/sponsorship",
78+
icon: Target,
79+
},
80+
{
81+
title: "Mentor",
82+
url: "/admin/forms/mentor",
83+
icon: GraduationCap,
84+
},
85+
{
86+
title: "Judges",
87+
url: "/admin/forms/judges",
88+
icon: Gavel,
89+
},
90+
{
91+
title: "Volunteer",
92+
url: "/admin/forms/volunteer",
93+
icon: HandHeart,
94+
},
95+
],
96+
},
6297
{
6398
title: "Analytics",
6499
items: [

0 commit comments

Comments
 (0)