-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtabs.tsx
41 lines (40 loc) · 851 Bytes
/
tabs.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import {
IoHomeOutline,
IoNotificationsOutline,
IoSearchOutline,
IoPersonOutline,
IoSettingsOutline,
IoChatbubbleOutline,
} from "react-icons/io5";
export const tabs = [
{
link: "/",
name: "Home",
icon: <IoHomeOutline className="w-6 h-6 sm:w-5 sm:h-5" />,
},
{
link: "/explore",
name: "Explore",
icon: <IoSearchOutline className="w-6 h-6 sm:w-5 sm:h-5" />,
},
{
link: "/messages",
name: "Messages",
icon: <IoChatbubbleOutline className="w-6 h-6 sm:w-5 sm:h-5" />,
},
{
link: "/notifications",
name: "Notifications",
icon: <IoNotificationsOutline className="w-6 h-6 sm:w-5 sm:h-5" />,
},
{
link: "/profile",
name: "Profile",
icon: <IoPersonOutline className="w-6 h-6 sm:w-5 sm:h-5" />,
},
{
link: "/settings",
name: "Settings",
icon: <IoSettingsOutline className="w-6 h-6 sm:w-5 sm:h-5" />,
},
];