invented a StepList to show the progress of the setup
This commit is contained in:
parent
3c9e901c63
commit
a29d2627d6
2 changed files with 24 additions and 8 deletions
15
src/components/StepListReceive.astro
Normal file
15
src/components/StepListReceive.astro
Normal 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}
|
||||
/>
|
||||
Loading…
Add table
Add a link
Reference in a new issue