invented a StepList to show the progress of the setup

This commit is contained in:
Christoph Haas 2025-08-24 16:26:52 +02:00
parent 3c9e901c63
commit a29d2627d6
2 changed files with 24 additions and 8 deletions

View file

@ -0,0 +1,15 @@
---
import StepList from "./StepList.astro";
const { currentStep } = Astro.props;
---
<StepList
steps={[
{ title: "DNS records point to your server" },
{ title: "Postfix fetches information from MariaDB" },
{ title: "Postfix hands over emails to Dovecot" },
{ title: "Dovecot saves the email to disk" },
]}
currentStep={currentStep}
/>