mirror of
https://github.com/tabler/tabler.git
synced 2026-08-06 03:12:26 +04:00
d8956a06d6
Co-authored-by: Bartek <xbartoszdobija@gmail.com>
23 lines
967 B
Plaintext
23 lines
967 B
Plaintext
---
|
|
title: Preview
|
|
summary: 'Tabler Illustrations offers 80 illustrations in two themes: light and dark. You can use them in your projects to enhance the visual appeal and convey messages effectively.'
|
|
layout: '@shared/layouts/DocsMdxLayout.astro'
|
|
---
|
|
|
|
import illustrations from '@data/illustrations.json'
|
|
export const allIllustrations = illustrations.sort()
|
|
|
|
Look at full list of illustrations below and see how they look. Find out more and purchase Tabler Illustrations at [our website]({{ site.homepage }}/illustrations).
|
|
|
|
<div class="row g-2 gy-6">
|
|
{allIllustrations.map((illustration, i) => {
|
|
return (
|
|
<div class="col-6 col-md-4 col-lg-3 text-center">
|
|
<img src={`/static/illustrations/light/${illustration}.png`} alt={illustration} class="hide-theme-dark" />
|
|
<img src={`/static/illustrations/dark/${illustration}.png`} alt={illustration} class="hide-theme-light" />
|
|
<code>{illustration}</code>
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|