/* Copyright (C) 2024 Manuel Bustillo*/ 'use client'; import Link from 'next/link'; import NavLinks from '@/app/ui/dashboard/nav-links'; import { PowerIcon } from '@heroicons/react/24/outline'; import { gloriaHallelujah } from '@/app/ui/fonts'; import { logout } from '@/app/api/authentication'; import { useRouter } from 'next/navigation'; import { getSlug } from '@/app/lib/utils'; export default function SideNav() { const router = useRouter(); return (