Initial commit
This commit is contained in:
commit
51161808ae
88 changed files with 6460 additions and 0 deletions
13
src/layouts/Layout.astro
Normal file
13
src/layouts/Layout.astro
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue