ocbo-portal/src/layouts/Layout.astro

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>