nextauth working.

This commit is contained in:
2025-06-30 06:36:03 -04:00
parent ccc6e41724
commit 41e55404bf
18 changed files with 925 additions and 23 deletions
+15
View File
@@ -0,0 +1,15 @@
'use client';
import { usePathname } from 'next/navigation';
import Navbar from './Navbar';
export default function NavigationWrapper() {
const pathname = usePathname();
const isAccountPage = pathname?.startsWith('/account');
if (isAccountPage) {
return null;
}
return <Navbar />;
}