Geral
Sidebar
Uma linda sidebar para seu dashboard.
Componente
Como usar
import { nextAuthOptions } from '@/app/api/auth/[...nextauth]/auth';
import { getServerSession } from 'next-auth';
import { Sidebar } from '@/app/shared/components/Sidebar';
import { BottomNavigation } from '@/app/shared/components/Sidebar/BottomNavigation';
import { MainNavigation } from '@/app/shared/components/Sidebar/MainNavigation';
const session = await getServerSession(nextAuthOptions);
const { email, name } = session.user;
<Sidebar
mainNavigation={<MainNavigation />}
bottomNavigation={<BottomNavigation />}
name={name}
email={email}
/>