mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
25 lines
698 B
TypeScript
25 lines
698 B
TypeScript
'use client';
|
|
import { Column, Grid } from '@umami/react-zen';
|
|
import type { ReactNode } from 'react';
|
|
import { PageBody } from '@/components/common/PageBody';
|
|
import { SettingsNav } from './SettingsNav';
|
|
|
|
export function SettingsLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<Grid columns={{ xs: '1fr', lg: 'auto 1fr' }} width="100%" height="100%">
|
|
<Column
|
|
display={{ xs: 'none', lg: 'flex' }}
|
|
width="240px"
|
|
height="100%"
|
|
border="right"
|
|
backgroundColor
|
|
marginRight="2"
|
|
>
|
|
<SettingsNav />
|
|
</Column>
|
|
<Column gap="6" margin="2">
|
|
<PageBody>{children}</PageBody>
|
|
</Column>
|
|
</Grid>
|
|
);
|
|
}
|