mirror of
https://github.com/sern-handler/website
synced 2026-06-19 22:32:23 +00:00
14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
---
|
|
import type { Props } from '../props';
|
|
|
|
import MobileMenuFooter from 'virtual:starlight/components/MobileMenuFooter';
|
|
import SidebarSublist from './SidebarSublist.astro';
|
|
|
|
const { sidebar } = Astro.props;
|
|
---
|
|
|
|
<SidebarSublist sublist={sidebar} />
|
|
<div class="md:sl-hidden">
|
|
<MobileMenuFooter {...Astro.props} />
|
|
</div>
|