Pre-conf work 2025

This commit is contained in:
2025-09-02 08:25:41 -04:00
parent 550021a18e
commit 4acbec6288
75 changed files with 8047 additions and 5228 deletions

View File

@@ -16,7 +16,10 @@ interface AdminContentProps {
userEmail: string;
}
export function AdminContent({ userName, userEmail }: AdminContentProps) {
export function AdminContent({
userName,
userEmail: _userEmail,
}: AdminContentProps) {
const quickActions = [
{
title: "Manage Users",
@@ -27,9 +30,17 @@ export function AdminContent({ userName, userEmail }: AdminContentProps) {
},
];
const stats: any[] = [];
const stats: Array<{
title: string;
value: string | number;
description?: string;
}> = [];
const alerts: any[] = [];
const alerts: Array<{
type: "info" | "warning" | "error";
title: string;
message: string;
}> = [];
const recentActivity = (
<div className="space-y-6">