fix: clarify experimental features, add to faq, add preview label

This commit is contained in:
rzmk 2023-12-22 11:57:15 -05:00
parent c8c8fe1b5d
commit 1407dde13d
No known key found for this signature in database
9 changed files with 100 additions and 80 deletions

View file

@ -8,7 +8,7 @@ const pricingData = [
"Transform data with recipes",
"Upload to CKAN datastores",
"Interactive data table view",
"Experimental Configurator GUI",
"Configurator GUI (experimental)",
];
export const Pricing = () => {
@ -131,7 +131,15 @@ export const Pricing = () => {
className="mb-4 flex"
key={`${text}-${index}`}
>
<CheckArrowIcon />
<CheckArrowIcon
fillColor={
text.includes(
"(experimental)"
)
? "fill-red-300"
: ""
}
/>
<span>{text}</span>
</li>
))}