Fixed the formatting in the Pricing.jsx

This commit is contained in:
Mathias Wagner 2023-07-09 16:52:40 +02:00
parent c58d1e34b0
commit 3dc188351b
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -49,13 +49,13 @@ const enterpriseFeatures = {
export const Pricing = () => {
return (
<Stack direction="row" gap={3} alignItems="center" justifyContent="center" flexWrap="wrap"
sx={{mt: 10, mb: 2}}>
sx={{mt: 10, mb: 2}}>
<Plan name="Personal" price="Kostenlos" features={personalFeatures}/>
<Plan name="Plus" price="4,99€/Monat" features={plusFeatures}/>
<Plan name="Pro" price="9,99€/Monat" features={proFeatures}/>
<Plan name="Pro" price="9,99€/Monat" features={proFeatures}/>
<Plan name="Enterprise" price="Auf Anfrage" features={enterpriseFeatures}/>
</Stack>
)
)
}