mirror of
https://github.com/sern-handler/website
synced 2026-06-26 01:32:26 +00:00
14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
---
|
|
import {
|
|
generateStarlightPageRouteData,
|
|
type StarlightPageProps as Props,
|
|
} from '../utils/starlight-page';
|
|
import Page from './Page.astro';
|
|
|
|
export type StarlightPageProps = Props;
|
|
---
|
|
|
|
<Page {...await generateStarlightPageRouteData({ props: Astro.props, url: Astro.url })}>
|
|
<slot />
|
|
</Page>
|