feat: add feature notification
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user