|
1 | | -import { House, Search, Plus, Bell, User } from "lucide-react"; |
| 1 | +import { House, Search, Plus, MessageCircle, User } from "lucide-react"; |
| 2 | + |
| 3 | +import { ROUTES } from "@/shared/config/routes"; |
2 | 4 |
|
3 | 5 | import type { LucideIcon } from "lucide-react"; |
4 | 6 |
|
5 | 7 | export const BOTTOM_NAV_ITEMS = [ |
6 | 8 | { id: "home", label: "홈", href: "/", icon: House }, |
7 | 9 | { id: "search", label: "검색", href: "/search", icon: Search }, |
8 | | - { id: "create", label: "등록", href: "/auctions/create", icon: Plus }, |
9 | | - { id: "notification", label: "알림", href: "/notifications", icon: Bell }, |
10 | | - { id: "profile", label: "내정보", href: "/users/me", icon: User }, |
| 10 | + { id: "create", label: "등록", href: ROUTES.auctionCreate, icon: Plus }, |
| 11 | + { id: "chat", label: "채팅", href: "/dm", icon: MessageCircle }, |
| 12 | + { id: "mypage", label: "내정보", href: ROUTES.myPage, icon: User }, |
11 | 13 | ] as const; |
12 | 14 |
|
13 | 15 | export type BottomNavIdType = (typeof BOTTOM_NAV_ITEMS)[number]["id"]; |
|
0 commit comments