mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-02 04:39:14 -05:00
Adding something to the about page for now, including the app version to better know what versions of the app people are running
18 lines
516 B
TypeScript
18 lines
516 B
TypeScript
import { NextPage } from 'next';
|
|
import React from 'react';
|
|
import SettingsAbout from '../../components/Settings/SettingsAbout';
|
|
import SettingsLayout from '../../components/Settings/SettingsLayout';
|
|
import useRouteGuard from '../../hooks/useRouteGuard';
|
|
import { Permission } from '../../hooks/useUser';
|
|
|
|
const SettingsAboutPage: NextPage = () => {
|
|
useRouteGuard(Permission.MANAGE_SETTINGS);
|
|
return (
|
|
<SettingsLayout>
|
|
<SettingsAbout />
|
|
</SettingsLayout>
|
|
);
|
|
};
|
|
|
|
export default SettingsAboutPage;
|