mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
17 lines
480 B
TypeScript
17 lines
480 B
TypeScript
import SettingsAbout from '@app/components/Settings/SettingsAbout';
|
|
import SettingsLayout from '@app/components/Settings/SettingsLayout';
|
|
import useRouteGuard from '@app/hooks/useRouteGuard';
|
|
import { Permission } from '@app/hooks/useUser';
|
|
import type { NextPage } from 'next';
|
|
|
|
const SettingsAboutPage: NextPage = () => {
|
|
useRouteGuard(Permission.ADMIN);
|
|
return (
|
|
<SettingsLayout>
|
|
<SettingsAbout />
|
|
</SettingsLayout>
|
|
);
|
|
};
|
|
|
|
export default SettingsAboutPage;
|