This commit is contained in:
Patrick Alvin Alcala 2026-02-23 19:17:42 +08:00
parent 0b4c7b2d93
commit 5e12675bd0
4 changed files with 105 additions and 54 deletions

View file

@ -12,34 +12,56 @@ import AW from '../../@dasig/images/sample.webp'
<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>
content='left'>
<h1 class='title'>Pat's Articles</h1>
</Row>
</Page>
<style lang='sass'>
h1
color: #3377AC
</style>
<div class='articles'>
<Row
wrap
gap={1}>
<Article
title='The quick brown fox'
subtitle='Ang pasko ay sumapit'
imageA={AA.src}
imageW={AW.src}
alt='aa'
minutes={2}
date='aa'
/>
<Article
title='AA'
subtitle='aa'
imageA={AA.src}
imageW={AW.src}
alt='aa'
minutes={2}
date='aa'
/>
<Article
title='AA'
subtitle='aa'
imageA={AA.src}
imageW={AW.src}
alt='aa'
minutes={2}
date='aa'
/>
</Row>
</div>
</Page>
</Layout>
<style lang='sass'>
@use '../../configs/design/colors.sass' as colors
@use '../styles/fonts.sass' as fonts
h1
color: colors.$white
margin: 0
font-family: fonts.$Literata
font-weight: bold
.articles
padding: 2rem 0 0 0
</style>