Added enterprise features to the Pricing.jsx

This commit is contained in:
Mathias Wagner 2023-07-09 03:38:58 +02:00
parent 6aa04b9894
commit 3fd853b9f5
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -34,6 +34,17 @@ const proFeatures = {
"Authentifizierung": true "Authentifizierung": true
} }
const enterpriseFeatures = {
"Lizenzen": "∞",
"Mitglieder": "∞",
"Gruppen": "∞",
"Zugriffsschlüssel": "∞",
"Metadaten": "∞",
"Berechtigungen": "∞",
"Offline-Aktivierung": true,
"Authentifizierung": true
}
export const Pricing = () => { export const Pricing = () => {
return ( return (
@ -43,7 +54,7 @@ export const Pricing = () => {
<Plan name="Personal" price="Kostenlos" features={personalFeatures}/> <Plan name="Personal" price="Kostenlos" features={personalFeatures}/>
<Plan name="Plus" price="4,99€/Monat" features={plusFeatures}/> <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"/> <Plan name="Enterprise" price="Auf Anfrage" features={enterpriseFeatures}/>
</Stack> </Stack>
) )