add health benefit form

fix super admin
This commit is contained in:
Danel Kungla
2025-07-23 16:33:24 +03:00
parent 2db67b7f20
commit 86b86c6752
43 changed files with 1329 additions and 561 deletions

View File

@@ -1,11 +1,17 @@
import { use } from 'react';
import { SiteFooter } from '~/(marketing)/_components/site-footer';
import { SiteHeader } from '~/(marketing)/_components/site-header';
import { withI18n } from '~/lib/i18n/with-i18n';
import { loadUserWorkspace } from '../home/(user)/_lib/server/load-user-workspace';
function SiteLayout(props: React.PropsWithChildren) {
const workspace = use(loadUserWorkspace());
return (
<div className={'flex min-h-[100vh] flex-col'}>
<SiteHeader />
<SiteHeader accounts={workspace.accounts} />
{props.children}