15 lines
430 B
Text
15 lines
430 B
Text
---
|
|
const { title } = Astro.props
|
|
|
|
const websiteName = 'Template'
|
|
const websiteDescription = 'This is just a template.'
|
|
|
|
import Background from '../../fwt/Background'
|
|
// import OptimizeBackground from '../../fwt/components/Optimizer/OptimizeBackground'
|
|
import HTML from '../../fwt/HTML'
|
|
---
|
|
|
|
<HTML title={title} name={websiteName} description={websiteDescription} font="inter">
|
|
<Background color="#0c1b31" />
|
|
<slot />
|
|
</HTML>
|