umami/src/app/(main)/websites/[websiteId]/WebsiteLayout.tsx
Francis Cao 26bd498a05
Some checks are pending
Node.js CI / build (postgresql, 18.18) (push) Waiting to run
add margin to website layout. remove from overview
2025-09-22 11:01:58 -07:00

23 lines
832 B
TypeScript

'use client';
import { ReactNode } from 'react';
import { Column, Grid } from '@umami/react-zen';
import { WebsiteProvider } from '@/app/(main)/websites/WebsiteProvider';
import { PageBody } from '@/components/common/PageBody';
import { WebsiteHeader } from './WebsiteHeader';
import { WebsiteNav } from './WebsiteNav';
export function WebsiteLayout({ websiteId, children }: { websiteId: string; children: ReactNode }) {
return (
<WebsiteProvider websiteId={websiteId}>
<Grid columns="auto 1fr" width="100%" height="100%">
<Column height="100%" border="right" backgroundColor marginRight="2">
<WebsiteNav websiteId={websiteId} />
</Column>
<PageBody gap>
<WebsiteHeader />
<Column>{children}</Column>
</PageBody>
</Grid>
</WebsiteProvider>
);
}