14 lines
201 B
Text
14 lines
201 B
Text
---
|
|
import { Background, HTML } from '../../@dasig'
|
|
|
|
interface Props {
|
|
title: string
|
|
}
|
|
|
|
const { title } = Astro.props
|
|
---
|
|
|
|
<HTML title={title} font="inter">
|
|
<Background image />
|
|
<slot />
|
|
</HTML>
|