Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import type { DashboardSectionConfig } from "@/types/admin";
/**
* Configuration for the admin dashboard navigation sections and cards.
* Each section groups related admin functionality together.
*/
export const adminDashboardConfig: DashboardSectionConfig[] = [
{
title: "Store Management",
items: [
{
title: "Orders",
description: "Manage and track all customer orders",
href: "/admin/orders",
iconName: "clipboard-list"
},
{
title: "Products",
description: "Manage your product catalog",
href: "/admin/products",
iconName: "cube"
},
{
title: "Categories",
description: "Organize your product categories",
href: "/admin/categories",
iconName: "archive"
},
{
title: "Images",
description: "Audit and manage product images",
href: "/admin/images",
iconName: "image"
},
]
},
{
title: "Marketing & Promotions",
items: [
{
title: "Promotions",
description: "Manage discounts, promo codes, and sales",
href: "/admin/promotions",
iconName: "tag"
},
{
title: "Hero Settings",
description: "Set products for hero components",
href: "/admin/hero",
iconName: "sparkles"
},
{
title: "Loyalty",
description: "Manage loyalty points and tiers",
href: "/admin/loyalty",
iconName: "star-outline"
},
{
title: "Referrals",
description: "Track referral program performance",
href: "/admin/referrals",
iconName: "users"
},
{
title: "Referral Leaderboard",
description: "Top referrers and rewards stats",
href: "/admin/referrals/leaderboard",
iconName: "award"
},
]
},
{
title: "Customer Engagement",
items: [
{
title: "Reviews",
description: "Manage product reviews and ratings",
href: "/admin/reviews",
iconName: "star-outline"
},
{
title: "Testimonials",
description: "Manage customer testimonials",
href: "/admin/testimonials",
iconName: "chat-bubble"
},
{
title: "Support",
description: "Manage support tickets and help articles",
href: "/admin/support",
iconName: "support"
},
]
},
{
title: "Analytics & Insights",
items: [
{
title: "Analytics",
description: "View site analytics, funnels, and performance",
href: "/admin/analytics",
iconName: "chart-bar"
},
]
},
{
title: "System Monitoring",
items: [
{
title: "Observability",
description: "SLOs, RUM, and system health metrics",
href: "/admin/monitoring/observability",
iconName: "chart-bar"
},
{
title: "Error Monitoring",
description: "Track and manage application errors",
href: "/admin/monitoring/errors",
iconName: "x-circle"
},
{
title: "Performance",
description: "Monitor system performance metrics",
href: "/admin/monitoring/performance",
iconName: "clock"
},
{
title: "Cache Dashboard",
description: "Monitor and manage application cache",
href: "/admin/monitoring/cache",
iconName: "database"
},
{
title: "Performance Alerts",
description: "Configure and manage performance alerting",
href: "/admin/monitoring/alerts",
iconName: "bell"
},
]
},
{
title: "Developer Tools",
items: [
{
title: "Dev Dashboard",
description: "Overview of development progress and metrics",
href: "/admin/dev",
iconName: "code"
},
{
title: "Dev Tools",
description: "Run tests, lint checks, and view docs",
href: "/admin/dev-tools",
iconName: "code"
},
{
title: "Project Plans",
description: "View development plans and roadmaps",
href: "/admin/dev-tools/plans",
iconName: "clipboard-check"
},
{
title: "Documentation Guides",
description: "Browse development and integration guides",
href: "/admin/dev-tools/guides",
iconName: "book-open"
},
{
title: "API Documentation",
description: "Interactive API docs and testing",
href: "/admin/api-docs",
iconName: "document"
},
]
},
];
|