Initial commit
This commit is contained in:
commit
eb8731d039
90 changed files with 6380 additions and 0 deletions
19
src/pages/index.astro
Normal file
19
src/pages/index.astro
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro'
|
||||
import { Logo, Page, Footer, Row, Image, Copyright, Column } from '../../@dasig'
|
||||
import Article from '../components/Article.astro'
|
||||
|
||||
import AA from '../../@dasig/images/sample.avif'
|
||||
import AW from '../../@dasig/images/sample.webp'
|
||||
---
|
||||
|
||||
<Layout title="Articles - Pat Alcala">
|
||||
<Page alignment="column">
|
||||
<Article title="How to sample" subtitle="This is just a sample" date="Feb 10, 2026" imageA={AA.src} imageW={AW.src} alt="aaa" minutes={5} />
|
||||
</Page>
|
||||
</Layout>
|
||||
|
||||
<style lang="sass">
|
||||
h1
|
||||
color: #3377AC
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue