Initial commit
This commit is contained in:
commit
51161808ae
88 changed files with 6460 additions and 0 deletions
30
src/pages/index.astro
Normal file
30
src/pages/index.astro
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import { Logo, Page, Footer, Row, Image, Copyright, Column } from '../../@dasig'
|
||||
import Counter from '../components/Counter/Counter'
|
||||
import PA1 from '../../@dasig/images/pat-alcala.avif'
|
||||
import PA2 from '../../@dasig/images/pat-alcala.webp'
|
||||
---
|
||||
|
||||
<Layout title="Dasig - Astro">
|
||||
<Page alignment="column">
|
||||
<Column>
|
||||
<Logo size={250} />
|
||||
|
||||
<h1>Dasig - Astro</h1>
|
||||
<Counter client:idle />
|
||||
|
||||
<Footer>
|
||||
<Row content="center" gap={0.5}>
|
||||
<Image avif={PA1.src} webp={PA2.src} size={100} />
|
||||
<Copyright year="2026" name="Pat Alcala" />
|
||||
</Row>
|
||||
</Footer>
|
||||
</Column>
|
||||
</Page>
|
||||
</Layout>
|
||||
|
||||
<style lang="sass">
|
||||
h1
|
||||
color: #3377AC
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue