diff --git a/src/frontend/apps/desk/src/core/PageLayout.tsx b/src/frontend/apps/desk/src/core/PageLayout.tsx new file mode 100644 index 0000000..5a6340d --- /dev/null +++ b/src/frontend/apps/desk/src/core/PageLayout.tsx @@ -0,0 +1,17 @@ +import { PropsWithChildren } from 'react'; + +import { Box } from '@/components'; +import { Footer } from '@/features/footer/Footer'; +import { Header } from '@/features/header'; + +export function PageLayout({ children }: PropsWithChildren) { + return ( + +
+ + {children} + +