rename files to snakecase

This commit is contained in:
Eng. Elias
2024-02-12 23:34:46 +04:00
parent b1ff70007d
commit 4dcfc86e5f
9 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,56 @@
"use client";
import { Icon } from "@iconify/react";
import Image from "next/image";
import Link from "next/link";
import useNavigation from "@/hook/use_navigation";
const SideNav = () => {
const { isMissionsActive, isAgentsActive } = useNavigation();
return (
<div className="flex-col space-y-4 items-center py-8 hidden sm:flex border-r border-zinc-700 h-full w-[120px] md:w-[225px] md:items-start fixed">
<Link
href="/"
className="flex flex-row space-x-1 items-center hover:bg-white/10 p-4 rounded-full duration-200"
>
<Image
src={"/crewai_logo.png"}
alt="CrewAI Logo"
width="100"
height="100"
/>
</Link>
<Link
href="/missions"
className="flex flex-row space-x-4 items-center px-4 py-3 rounded-full duration-200 hover:bg-white/10 relative"
>
<Icon icon="flat-color-icons:parallel-tasks" width="35" height="35" />
<span
className={`text-2xl pt-2 hidden md:flex ${
isMissionsActive ? "font-bold" : ""
}`}
>
Missions
</span>
</Link>
<Link
href="/agents"
className="flex flex-row space-x-4 items-center px-4 py-3 rounded-full duration-200 hover:bg-white/10"
>
<Icon icon="streamline-emojis:robot-face-1" width="35" height="35" />
<span
className={`text-2xl pt-2 hidden md:flex ${
isAgentsActive ? "font-bold" : ""
}`}
>
Agents
</span>
</Link>
</div>
);
};
export default SideNav;