refactor components/navigation

This commit is contained in:
vchikalkin 2025-05-23 16:57:44 +03:00
parent 2510e0bcae
commit 8dc8133520
4 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
'use client';
import { NavButton } from './components/nav-button';
import { NavButton } from './nav-button';
import { BookOpen, Newspaper, PlusCircle, User, Users } from 'lucide-react';
import { usePathname } from 'next/navigation';

View File

@ -1,6 +1,6 @@
'use client';
import { BackButton } from './components/back-button';
import { BackButton } from './back-button';
type Props = { title: string | undefined };