dasig-static/src/layouts/Layout.astro
2026-01-30 11:48:35 +08:00

9 lines
157 B
Text

---
const { title } = Astro.props
import { Background, HTML } from '../../@dasig'
---
<HTML title={title} font="inter">
<Background />
<slot />
</HTML>