Initial commit

This commit is contained in:
Patrick Alvin Alcala 2026-01-30 10:23:26 +08:00
commit 51161808ae
88 changed files with 6460 additions and 0 deletions

13
src/layouts/Layout.astro Normal file
View file

@ -0,0 +1,13 @@
---
const { title } = Astro.props
const websiteName = 'Template'
const websiteDescription = 'This is just a template.'
import { Background, HTML } from '../../@dasig'
---
<HTML title={title} name={websiteName} description={websiteDescription} font="inter" author="Patrick Alvin Alcala">
<Background color="#0c1b31" />
<slot />
</HTML>