19 lines
570 B
Text
19 lines
570 B
Text
---
|
|
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>
|