45 lines
1 KiB
Text
45 lines
1 KiB
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'>
|
|
<Row
|
|
wrap
|
|
gap={0}
|
|
content='center'>
|
|
<div style='width: 500px'>
|
|
<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}
|
|
/>
|
|
</div>
|
|
<div style='width: 500px'>
|
|
<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}
|
|
/>
|
|
</div>
|
|
</Row>
|
|
</Page>
|
|
|
|
<style lang='sass'>
|
|
h1
|
|
color: #3377AC
|
|
</style>
|
|
</Layout>
|