umami/pages/settings/websites/index.js

26 lines
535 B
JavaScript
Raw Normal View History

2023-03-24 17:55:20 +00:00
import AppLayout from 'components/layout/AppLayout';
2023-03-23 18:46:49 +00:00
import SettingsLayout from 'components/layout/SettingsLayout';
2023-01-10 07:59:26 +00:00
import WebsitesList from 'components/pages/settings/websites/WebsitesList';
2020-08-05 05:45:05 +00:00
2023-02-28 04:03:04 +00:00
export default function WebsitesPage({ disabled }) {
if (disabled) {
return null;
}
2020-08-05 05:45:05 +00:00
return (
2023-03-24 17:55:20 +00:00
<AppLayout>
<SettingsLayout>
<WebsitesList />
</SettingsLayout>
</AppLayout>
2020-08-05 05:45:05 +00:00
);
}
2023-02-28 04:03:04 +00:00
export async function getServerSideProps() {
return {
props: {
disabled: !!process.env.CLOUD_MODE,
},
};
}