diff --git a/frontend/app/components/NavigationRail/NavigationRail.jsx b/frontend/app/components/NavigationRail/NavigationRail.jsx index bad7d86..e399168 100644 --- a/frontend/app/components/NavigationRail/NavigationRail.jsx +++ b/frontend/app/components/NavigationRail/NavigationRail.jsx @@ -5,8 +5,10 @@ import Link from "next/link"; import Image from "next/image"; import { useUserStore } from "@/app/store/user-store"; import { useRouter } from "next/navigation"; +import useCopyToClipboard from "@/app/hooks/useCopyToClipboard"; export const NavigationRail = (props) => { + const [isCopied, copyToClipboard] = useCopyToClipboard(); const pathname = usePathname(); const userStore = useUserStore(); const router = useRouter(); @@ -98,6 +100,14 @@ export const NavigationRail = (props) => { )} + + +