Skip to content

Commit eba3619

Browse files
committed
feat: 30-day free trial for Pro plan, FAQ support question, reiterate existing features on Free plan
1 parent a0acc61 commit eba3619

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

bun.lockb

-8 Bytes
Binary file not shown.

src/components/FAQ.jsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,17 @@ const FAQData = [
122122
url: "https://support.dathere.com",
123123
},
124124
],
125-
}
125+
},
126+
{
127+
question: "My question wasn't listed here. Where can I get support?",
128+
answer: "You may request support on our support site by creating a ticket.",
129+
links: [
130+
{
131+
label: "Contact support",
132+
url: "https://support.dathere.com",
133+
},
134+
],
135+
},
126136
];
127137

128138
export const FAQ = () => (

src/components/Pricing.jsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ import { CheckArrowIcon } from "../assets/icons/CheckArrowIcon";
66
const pricingData = [
77
["Import spreadsheets up to 1MB",
88
"Transform data with free recipes",
9-
"List 1 CKAN instance",
9+
"View spreadsheet statistics and frequency data",
10+
"Run Polars SQL queries",
11+
"Upload/Download compatible data from a CKAN instance",
12+
"List 1 CKAN instance at a time",
1013
"Use free tools in Toolbox",
1114
"Use qsv slice from Flow",
1215
"Use qsv count and qsv slice in Configurator (experimental)",
13-
"Export Workflow file data and various data table data to CSV, TSV, TAB, and SSV"
16+
"Export Workflow file data and various data table data to CSV, TSV, TAB, and SSV",
1417
],
1518
["Import spreadsheets larger than 1MB",
1619
"View extra statistics in the Workflow based on your file",
@@ -164,8 +167,9 @@ export const Pricing = () => {
164167
target="_blank"
165168
>
166169
<div className="inline-block text-center py-2 px-4 w-full custom-button-colored leading-loose transition duration-200">
167-
Purchase a License Key
170+
Start 30-day free trial
168171
</div>
172+
<p className="mt-8 text-center text-white">After your trial ends in 30 days, you will be charged ${isMonthly ? "99.99" : "999.99"}, then ${isMonthly? "99.99" : "999.99"} every {isMonthly ? "month" : "year"}.</p>
169173
</a>
170174
</div>
171175
</div>

0 commit comments

Comments
 (0)