umami/src/app/(main)/settings/oidc/page.tsx
2025-10-16 21:42:50 +02:00

10 lines
224 B
TypeScript

import { Metadata } from 'next';
import OIDCSettingsPage from '@/app/(main)/settings/OIDCSettingsPage';
export default function () {
return <OIDCSettingsPage />;
}
export const metadata: Metadata = {
title: 'OIDC',
};