1
0
Fork 0

feat(org): Ported components to mjs and named exports

This commit is contained in:
joostdecock 2023-01-29 16:44:02 +01:00
parent 37f7833983
commit 595417a23b
118 changed files with 836 additions and 852 deletions

View file

@ -0,0 +1,26 @@
import { PrimaryNavigation } from './primary.mjs'
export const AsideNavigation = ({ app, slug, mobileOnly = false, before = [], after = [] }) => (
<aside
className={`
fixed top-0 right-0 h-screen w-screen
overflow-y-auto z-20
bg-base-100 text-base-content md:bg-base-50
transition-all
${app.primaryMenu ? '' : 'translate-x-[-120%]'} transition-transform
md:flex md:sticky md:flex-row-reverse
md:relative md:transform-none
px-6 py-24
shrink-0
md:w-24 md:px-2 md:justify-center
lg:w-96 lg:pr-2 lg:border-r-2
xl:w-lg xl:border-0
2xl:pr-8
${mobileOnly ? 'block md:hidden' : ''}
`}
>
{before}
<PrimaryNavigation app={app} active={slug} />
{after}
</aside>
)