diff --git a/artifacts/ehsan-poc/src/components/layout/Header.tsx b/artifacts/ehsan-poc/src/components/layout/Header.tsx index 231aec9..8207dda 100644 --- a/artifacts/ehsan-poc/src/components/layout/Header.tsx +++ b/artifacts/ehsan-poc/src/components/layout/Header.tsx @@ -7,6 +7,7 @@ import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, + DropdownMenuSeparator, DropdownMenuTrigger, } from "../ui/dropdown-menu"; import { @@ -18,6 +19,15 @@ import { X, LogOut, Globe, + Sprout, + HandCoins, + Gift, + Beef, + Megaphone, + Repeat, + MessageSquare, + TrendingUp, + HeartHandshake, } from "lucide-react"; import ehsanLogo from "../../assets/ehsan-logo.png"; @@ -31,6 +41,17 @@ export function Header() { const isActive = (path: string) => location === path; + const services = [ + { key: "ghiras", label: t.serviceItems.ghiras, icon: Sprout }, + { key: "zakat", label: t.serviceItems.zakat, icon: HandCoins }, + { key: "gift", label: t.serviceItems.gift, icon: Gift }, + { key: "adahi", label: t.serviceItems.adahi, icon: Beef }, + { key: "campaigns", label: t.serviceItems.campaigns, icon: Megaphone }, + { key: "recurring", label: t.serviceItems.recurring, icon: Repeat }, + { key: "sms", label: t.serviceItems.sms, icon: MessageSquare }, + { key: "stocks", label: t.serviceItems.stocks, icon: TrendingUp }, + ]; + return (
@@ -43,8 +64,10 @@ export function Header() {