import { useAuth } from '@/hooks/useAuth'; import { Navigate } from 'react-router-dom'; import { ROUTES } from '@/lib/types'; export function DeveloperPage() { const { isAuthenticated } = useAuth(); if (!isAuthenticated) { return ; } return (

Developer Dashboard

OIDC Client Setup

Register your application to use nKode as an identity provider. Configure redirect URIs, scopes, and authentication flows.

Client registration coming soon. This will generate client_id and client_secret for OAuth2/OIDC integration.

); }