// This is a placeholder for NextAuth configuration // In a real implementation, this would contain the actual NextAuth configuration export const authOptions = { // NextAuth configuration would go here // For now, this is just a placeholder to resolve the import error providers: [], callbacks: {}, pages: { signIn: "/admin/login", }, }; // Mock session type for development export interface Session { user: { id: string; name?: string; email?: string; role?: string; siteIds?: string[]; }; }