diff --git a/src/components/Settings/SettingsJobs.tsx b/src/components/Settings/SettingsJobs.tsx index 5e9364b0..78e5e3f7 100644 --- a/src/components/Settings/SettingsJobs.tsx +++ b/src/components/Settings/SettingsJobs.tsx @@ -46,7 +46,7 @@ const SettingsJobs: React.FC = () => { - diff --git a/src/components/Settings/SettingsLogs/index.tsx b/src/components/Settings/SettingsLogs/index.tsx new file mode 100644 index 00000000..9c6d9cf7 --- /dev/null +++ b/src/components/Settings/SettingsLogs/index.tsx @@ -0,0 +1,17 @@ +import React from 'react'; + +// We will localize this file when the complete version is released. + +const SettingsLogs: React.FC = () => { + return ( + <> +
+ Logs page is still being built. For now, you can access your logs + directly in stdout (container logs) or looking in{' '} + /app/config/logs/overseerr.logs +
+ + ); +}; + +export default SettingsLogs; diff --git a/src/pages/settings/logs.tsx b/src/pages/settings/logs.tsx new file mode 100644 index 00000000..2b50be3a --- /dev/null +++ b/src/pages/settings/logs.tsx @@ -0,0 +1,14 @@ +import { NextPage } from 'next'; +import React from 'react'; +import SettingsLayout from '../../components/Settings/SettingsLayout'; +import SettingsLogs from '../../components/Settings/SettingsLogs'; + +const SettingsLogsPage: NextPage = () => { + return ( + + + + ); +}; + +export default SettingsLogsPage; diff --git a/src/styles/globals.css b/src/styles/globals.css index 0bbdb488..18c2b0ff 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -47,3 +47,7 @@ body { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } + +code { + @apply bg-gray-800 py-1 px-2 rounded-md; +}