Improve product pages (#2143)

This commit is contained in:
Thomas Kaul
2023-07-11 21:40:45 +02:00
committed by GitHub
parent 5d26d94586
commit c25f532487
4 changed files with 83 additions and 29 deletions

View File

@@ -5,11 +5,12 @@ export interface Product {
hasSelfHostingAbility?: boolean;
isOpenSource: boolean;
key: string;
languages?: string;
languages?: string[];
name: string;
note?: string;
origin?: string;
pricingPerYear?: string;
region?: string;
slogan?: string;
useAnonymously?: boolean;
}