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
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.