mirror of
https://github.com/Xahau/xahau-web.git
synced 2026-08-03 20:20:54 +00:00
14 lines
429 B
Plaintext
14 lines
429 B
Plaintext
---
|
|
import Search from '@astrojs/starlight/components/Search.astro'
|
|
import SidebarPersister from '@astrojs/starlight/components/SidebarPersister.astro'
|
|
import SidebarSublist from '@astrojs/starlight/components/SidebarSublist.astro'
|
|
|
|
const _sidebar = Astro.locals.starlightRoute.sidebar
|
|
console.log(_sidebar)
|
|
---
|
|
|
|
<SidebarPersister>
|
|
<Search class="hidden md:block" />
|
|
<SidebarSublist sublist={_sidebar} />
|
|
</SidebarPersister>
|