fixed admin icon and added admin routing if logged in

This commit is contained in:
2025-06-30 20:32:40 -04:00
parent b478d9797d
commit b2ada8d81e
4 changed files with 103 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
'use client';
import { SessionProvider } from 'next-auth/react';
export default function AdminProviders({ children }: { children: React.ReactNode }) {
return (
<SessionProvider>
{children}
</SessionProvider>
);
}