diff --git a/libs/website/layouts/base.tsx b/libs/website/layouts/base.tsx new file mode 100644 index 00000000..4b3a70f8 --- /dev/null +++ b/libs/website/layouts/base.tsx @@ -0,0 +1,23 @@ +import { FOOTER_CONSTANTS, FooterPresenter, NAVBAR_CONSTANTS, NavbarPresenter } from '@website/shared/ui/navigation' +import React from 'react' +import { ClientOnly } from 'remix-utils/client-only' + +export function Layout({ children }) { + return ( + <> + + {() => ( + + )} + + +
{children}
+ + + ) +}