Stat

apps/www/src/sections/Stat.astro · 13 lines · group Stats

Used by

Live sites: posexpert.se.

Samples 1

posexpert.se/shown inside <Stats>

Key to smarter transactions

By implementing our POS development solutions, you can streamline your business operations, reduce transaction times, improve security, and boost sales.

Clients
>40
Point of Sales
>3000
SLA
99,9%
MDX of this sample
<Stats
  title="Key to smarter transactions"
  description="By implementing our POS development solutions, you can streamline your business operations, reduce transaction times, improve security, and boost sales."
>
  <Stat value=">40" label="Clients" />
  <Stat value=">3000" label="Point of Sales" />
  <Stat value="99,9%" label="SLA" />
</Stats>

Props

NameTypeRequiredDefaultDescription
valuestringyes
labelstringyes

Source apps/www/src/sections/Stat.astro @ gitt.one

---
interface Props {
  value: string;
  label: string;
}
const { value, label } = Astro.props;
---

<div class="flex flex-col p-6 text-center">
  <dt class="order-2 mt-2 text-lg font-medium text-gray-500">{label}</dt>
  <dd class="order-1 text-5xl font-extrabold text-primary-600">{value}</dd>
</div>

Source links point to engine-astro@e857a859. Samples are cut from the sites' own content by scripts/gallery-extract.mjs; nothing is merged or removed yet.