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 ( ); }; export default SettingsAboutPage;