TenantAtlas/apps/website/src/components/ui/blocks/StatsGrid.astro
ahmido eeb5c98450 feat: rebuild website on ScrewFast foundation (#393)
## Summary
- rebuild `apps/website` on the pinned ScrewFast Astro foundation
- replace the legacy page/content/component structure with the new section and UI architecture
- add Starlight-based docs and the new public route set for platform, pricing, trust, legal, and guides
- refresh website tooling, dependencies, and Playwright smoke coverage for the new site shell

## Scope
- touches `apps/website` and the matching spec artifacts for feature 402
- does not modify `apps/platform`

## Testing
- not run in this step

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #393
2026-05-20 21:36:29 +00:00

24 lines
549 B
Plaintext

---
import Icon from '@components/ui/icons/Icon.astro';
const { count, description, index } = Astro.props;
interface Props {
count: string;
description: string;
index: number;
}
---
<li class="-m-0.5 flex flex-col p-4 sm:p-8">
<div
class="mb-2 flex items-end gap-x-2 text-3xl font-bold text-neutral-800 sm:text-5xl dark:text-neutral-200"
>
{index === 1 || index === 2 ? <Icon name="arrowUp" /> : null}
{count}
</div>
<p class="text-sm text-neutral-600 sm:text-base dark:text-neutral-400">
{description}
</p>
</li>