Fixed default layout

This commit is contained in:
Patrick Alvin Alcala 2025-08-26 16:22:09 +08:00
parent c5b341ab52
commit 17f09eea76

View file

@ -3,6 +3,8 @@ const { title } = Astro.props
const websiteName = 'Template'
const websiteDescription = 'This is just a template.'
import Background from '../builtin-components/Background/Background'
---
<html lang="en">
@ -16,6 +18,7 @@ const websiteDescription = 'This is just a template.'
</head>
<body id="body">
<Background color="#0c1b31" />
<slot />
</body>
</html>
@ -26,6 +29,5 @@ const websiteDescription = 'This is just a template.'
#body
font-family: fonts.$Inter
background-color: vars.$background
color: vars.$textColor
</style>