Skip to content

Commit df3aadc

Browse files
édouard wautierédouard wautier
édouard wautier
authored and
édouard wautier
committed
wip
1 parent da688d3 commit df3aadc

File tree

2 files changed

+54
-21
lines changed

2 files changed

+54
-21
lines changed

front/pages/index.tsx

Lines changed: 50 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ export default function Home({
366366
<div
367367
className={classNames(
368368
defaultFlexClasses,
369-
"s-dark dark col-span-8 col-start-3 flex flex-col gap-4"
369+
"s-dark dark col-span-12 flex flex-col gap-4"
370370
)}
371371
>
372372
<H2>Pricing</H2>
@@ -376,7 +376,6 @@ export default function Home({
376376
price="$0"
377377
priceLabel="/ month"
378378
color="emerald"
379-
className="w-64"
380379
>
381380
<PriceTable.Item label="One user" variant="dash" />
382381
<PriceTable.Item label="One workspace" variant="dash" />
@@ -386,34 +385,66 @@ export default function Home({
386385
label="50 documents as data sources"
387386
variant="dash"
388387
/>
388+
<PriceTable.Item
389+
label="No connections
390+
(GitHub, Google Drive, Notion, Slack)"
391+
variant="xmark"
392+
/>
389393
<PriceTable.Item label="Privacy and Data Security" />
390394
<PriceTable.Item label="State of the art LLM models (GPT-4, Claude, …)" />
391395
<PriceTable.Item label="Dust Developer Platform" />
392396
</PriceTable>
393397
<PriceTable
394-
title="Team"
395-
price="0€"
398+
title="Pro"
399+
price="$29"
396400
color="sky"
397401
priceLabel="/ month / seat"
398-
className="w-64"
399402
>
400-
<PriceTable.Item label="Unlimited members / workspace" />
403+
<PriceTable.Item label="Up to 500 users" />
404+
<PriceTable.Item label="One workspace" variant="dash" />
401405
<PriceTable.Item label="Unlimited custom assistants" />
402-
<PriceTable.Item label="Advanced LLM models (gpt4, Claude, ...)" />
403-
<PriceTable.Item label="1 user" />
404-
<PriceTable.Item label="1 user" />
405-
<PriceTable.Item label="1 user" />
406-
<PriceTable.Item label="1 user" />
406+
<PriceTable.Item label="Unlimited messages" />
407+
<PriceTable.Item label="Unlimited data sources (fair use)" />
408+
<PriceTable.Item
409+
label="Connections
410+
(GitHub, Google Drive, Notion, Slack)"
411+
/>
412+
<PriceTable.Item label="Privacy and Data Security" />
413+
<PriceTable.Item label="State of the art LLM models (GPT-4, Claude, …)" />
414+
<PriceTable.Item label="Dust Developer Platform" />
415+
416+
<PriceTable.Item label="Single Sign-on (Google, GitHub)" />
417+
<PriceTable.Item
418+
label="Workspace role and permissions"
419+
variant="dash"
420+
/>
421+
<PriceTable.Item label="Centralize billing" variant="dash" />
422+
423+
<PriceTable.Item label="Assistants available via Slackbot" />
424+
<PriceTable.Item label="Assistants can execute Dust Apps" />
407425
</PriceTable>
408-
<PriceTable title="Enterprise" price="Custom" className="w-64">
409-
<PriceTable.Item label="Unlimited members / workspace" />
410-
<PriceTable.Item label="Unlimited workspaces" />
426+
<PriceTable title="Enterprise" price="Custom">
427+
<PriceTable.Item label="From 100 users" />
428+
<PriceTable.Item label="Multiple workspaces" variant="dash" />
411429
<PriceTable.Item label="Unlimited custom assistants" />
412-
<PriceTable.Item label="1 user" />
413-
<PriceTable.Item label="1 user" />
414-
<PriceTable.Item label="1 user" />
415-
<PriceTable.Item label="1 user" />
416-
<PriceTable.Item label="1 user" />
430+
<PriceTable.Item label="Unlimited messages" />
431+
<PriceTable.Item label="Unlimited data sources (fair use)" />
432+
<PriceTable.Item
433+
label="Connections
434+
(GitHub, Google Drive, Notion, Slack)"
435+
/>
436+
<PriceTable.Item label="Privacy and Data Security" />
437+
<PriceTable.Item label="State of the art LLM models (GPT-4, Claude, …)" />
438+
<PriceTable.Item label="Dust Developer Platform" />
439+
440+
<PriceTable.Item label="Single Sign-on (Google, GitHub)" />
441+
<PriceTable.Item label="Advanced workspace role and permissions" />
442+
<PriceTable.Item label="Centralize billing" />
443+
444+
<PriceTable.Item label="Assistants available via Slackbot" />
445+
<PriceTable.Item label="Assistants can execute Dust Apps" />
446+
<PriceTable.Item label="Assistant design and evaluation" />
447+
<PriceTable.Item label="Dedicated account support" />
417448
</PriceTable>
418449
</div>
419450
</div>

sparkle/src/components/PriceTable.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function PriceTable({
4141
return (
4242
<div
4343
className={classNames(
44-
"s-w-72",
44+
"s-w-full",
4545
"s-flex s-cursor-default s-flex-col s-rounded-xl s-p-1 s-shadow-xl",
4646
"s-duration-400 s-scale-95 s-transition-all s-ease-out hover:s-scale-100",
4747
colorTable[color],
@@ -155,5 +155,7 @@ interface PriceTableContainerProps {
155155
}
156156

157157
PriceTable.Container = function ({ children }: PriceTableContainerProps) {
158-
return <div className="s-flex s-w-full s-gap-3">{children}</div>;
158+
return (
159+
<div className="s-flex s-w-full s-items-stretch s-gap-3">{children}</div>
160+
);
159161
};

0 commit comments

Comments
 (0)