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