feat: add feature notification

This commit is contained in:
2026-02-23 11:09:57 +03:30
parent c2b55647aa
commit d65b73a593
8 changed files with 743 additions and 2 deletions
+11 -1
View File
@@ -2,7 +2,8 @@
import { useAuth } from '@/contexts/AuthContext';
import Link from 'next/link';
import { UsersIcon, CubeIcon, TagIcon } from '@heroicons/react/24/outline';
import { UsersIcon, CubeIcon, TagIcon , BellIcon } from '@heroicons/react/24/outline';
// import { BellIcon } from 'lucide-react';
export default function Dashboard() {
const { user, logout } = useAuth();
@@ -57,6 +58,15 @@ export default function Dashboard() {
</p>
</div>
</Link>
<Link href="/admin/reminders" className="block">
<div className="bg-yellow-50 hover:bg-yellow-100 rounded-lg p-6 transition-colors">
<BellIcon className="h-8 w-8 text-yellow-600 mb-3" />
<h3 className="text-lg font-medium text-gray-900">مدیریت یادآوریها</h3>
<p className="text-sm text-gray-600 mt-1">
ایجاد و مدیریت یادآوریها و پیامهای انگیزشی
</p>
</div>
</Link>
</div>
</div>
</div>