"use client"
import type React from "react"
import {
Home,
Clock,
Map,
FileText,
Settings,
PenTool,
BarChart3,
Plane,
LineChart,
DollarSign,
MoreHorizontal,
} from "lucide-react"
import Link from "next/link"
import { cn } from "@/lib/utils"
import { usePathname } from "next/navigation"
export function MapSidebar() {
const pathname = usePathname()
const mainNavItems = [
{ name: "Home", icon: Home, href: "/" },
{ name: "My assets", icon: Clock, href: "/assets" },
{ name: "Models", icon: Map, href: "/models" },
{ name: "Trade", icon: LineChart, href: "/trade" },
{ name: "Earn", icon: DollarSign, href: "/earn" },
{ name: "Documentation", icon: FileText, href: "/documentation", badge: "NEW" },
{ name: "Pay", icon: Settings, href: "/pay" },
{ name: "More", icon: MoreHorizontal, href: "/more" },
]
const projectNavItems = [
{ name: "Design Engineering", icon: PenTool, href: "/projects/design" },
{ name: "Sales & Marketing", icon: BarChart3, href: "/projects/sales" },
{ name: "Travel", icon: Plane, href: "/projects/travel" },
]
return (
)
}
function Gift(props: React.SVGProps) {
return (
)
}