2022-01-31 06:06:29 +01:00
|
|
|
import React from 'react';
|
2022-03-07 15:32:39 +01:00
|
|
|
import Link from 'next/link';
|
2022-03-07 13:22:35 +01:00
|
|
|
import { IconCode, IconStack, IconGitPullRequest, IconUser, IconUsers, IconSettings,IconBuilding } from '@tabler/icons';
|
2022-01-31 06:06:29 +01:00
|
|
|
import StyledWrapper from './StyledWrapper';
|
|
|
|
|
|
|
|
const MenuBar = () => {
|
|
|
|
return (
|
|
|
|
<StyledWrapper className="h-full flex flex-col">
|
|
|
|
<div className="flex flex-col">
|
|
|
|
<div className="menu-item active">
|
2022-03-07 15:32:39 +01:00
|
|
|
<Link href="/">
|
|
|
|
<IconCode size={28} strokeWidth={1.5}/>
|
|
|
|
</Link>
|
2022-01-31 06:06:29 +01:00
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconStack size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconGitPullRequest size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconUsers size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="flex flex-col flex-grow justify-end">
|
2022-02-03 18:55:38 +01:00
|
|
|
{/* Teams Icon */}
|
|
|
|
{/* <div className="menu-item">
|
|
|
|
<IconBuilding size={28} strokeWidth={1.5}/>
|
|
|
|
</div> */}
|
2022-01-31 06:06:29 +01:00
|
|
|
<div className="menu-item">
|
2022-03-07 15:32:39 +01:00
|
|
|
<Link href="/login">
|
|
|
|
<IconUser size={28} strokeWidth={1.5}/>
|
|
|
|
</Link>
|
2022-01-31 06:06:29 +01:00
|
|
|
</div>
|
|
|
|
<div className="menu-item">
|
|
|
|
<IconSettings size={28} strokeWidth={1.5}/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</StyledWrapper>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MenuBar;
|