umami/src/app/(main)/settings/layout.tsx

18 lines
359 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
import SettingsLayout from './SettingsLayout';
2024-02-17 23:12:14 +00:00
import { Metadata } from 'next';
2023-03-23 18:46:49 +00:00
2024-02-05 06:35:14 +00:00
export default function ({ children }) {
2024-02-15 06:13:13 +00:00
if (process.env.cloudMode) {
return null;
}
2024-02-06 07:59:33 +00:00
return <SettingsLayout>{children}</SettingsLayout>;
2023-03-23 18:46:49 +00:00
}
2024-02-17 23:12:14 +00:00
export const metadata: Metadata = {
title: {
template: '%s | Settings | Umami',
default: 'Settings | Umami',
},
};