-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsidebar.js
112 lines (108 loc) · 2.55 KB
/
sidebar.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import Link from "next/link";
import { useRouter } from "next/router";
import {
Intercom,
Mail,
PaperAirplane,
DocumentSearch,
Chat,
Bell,
BookOpen,
} from "./svg";
import Image from "next/image";
const items = [
{
icon: Mail,
name: "Inbox",
route: "/something",
},
{
icon: PaperAirplane,
name: "Leads",
route: "/leads",
},
{
icon: DocumentSearch,
name: "Search",
route: "/search",
},
{
icon: Chat,
name: "Respond",
route: "/",
},
];
const TopMenu = () => {
const router = useRouter();
return (
<div className={`flex flex-col items-center pt-4`}>
<a href="/" className="pb-8" title="Intercom">
<Intercom className="h-8 w-8 text-blue-500" />
</a>
{items.map((i) => {
const Icon = i.icon;
return (
<Link key={i.name} href={i.route}>
<a
className={`focus:outline-none p-4
${router.pathname === i.route ? "text-blue-500" : ""}`}
title={i.name}
aria-label={i.name}
>
<Icon className="h-8 w-8" />
</a>
</Link>
);
})}
</div>
);
};
const BottomMenu = () => {
return (
<div className="flex flex-col items-center">
<Link href="#">
<a
className={`focus:outline-none p-4`}
title="Notifications"
aria-label="Notifications"
>
<Bell className="h-8 w-8" />
</a>
</Link>
<Link href="#">
<a
className={`focus:outline-none p-4`}
title="Notifications"
aria-label="Notifications"
>
<BookOpen className="h-8 w-8" />
</a>
</Link>
<Link href="#">
<a
className={`focus:outline-none p-4`}
title="Notifications"
aria-label="Notifications"
>
<div className="flex flex-wrap justify-center">
<div className="w-8 h-8">
<img
src="https://demos.creative-tim.com/tailwindcss-starter-project/_next/static/images/team-4-470x470-4ef82ef45a9598d24c4c951ead4d626a.png"
alt="user"
className="shadow-lg rounded-full max-w-full h-auto align-middle border-none"
/>
</div>
</div>
</a>
</Link>
</div>
);
};
export default function Sidebar() {
return (
<div className="w-16 flex-none flex flex-col bg-gray-100 justify-between border-r-2 border-gray-200 text-gray-500">
<TopMenu />
<BottomMenu />
</div>
);
}