Used new html component

This commit is contained in:
Patrick Alvin Alcala 2025-09-01 10:20:27 +08:00
parent 89ac48df4c
commit f8c7d24cb5

View file

@ -6,23 +6,10 @@ const websiteDescription = 'This is just a template.'
import Background from '../../fwt/components/Background/Background' import Background from '../../fwt/components/Background/Background'
import OptimizeBackground from '../../fwt/components/Optimizer/OptimizeBackground' import OptimizeBackground from '../../fwt/components/Optimizer/OptimizeBackground'
import Head from '../../fwt/components/Head/Head' import HTML from '../../fwt/components/HTML/HTML'
--- ---
<html lang="en"> <HTML title={title} name={websiteName} description={websiteDescription} font="inter">
<Head title={title} name={websiteName} description={websiteDescription} /> <Background color="#0c1b31" />
<slot />
<body id="body"> </HTML>
<Background color="#0c1b31" />
<slot />
<style lang="sass">
@use '/src/styles/variables.sass' as vars
@use '/src/styles/fonts.sass' as fonts
#body
font-family: fonts.$Inter
color: vars.$textColor
</style>
</body>
</html>