Skip to content

Commit 1b1bc8d

Browse files
committed
fix pricing
1 parent a327e8e commit 1b1bc8d

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

src/pages/groot.js

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ export default function Groot() {
8080
},
8181
{
8282
name: "PRO (floating license)",
83-
price: "€790",
84-
durance: " / year (*)",
83+
price: "€65",
84+
durance: " / month",
85+
sub_durance: "Paid yearly (€780 / year)",
8586
points: [
8687
"Search Nodes in large trees",
8788
"Unlimited Number of Nodes in Monitor and Log Visualizer",
88-
"Interactive real-time debugger",
89-
"Technical support",
89+
"Interactive real-time debugger"
9090
],
9191
btn: "Buy License",
9292
onclick: () => handleClickPro()
@@ -98,7 +98,7 @@ export default function Groot() {
9898
points: [
9999
"All the features in PRO",
100100
"Access to the source code",
101-
"Site license with unlimited number of seats.",
101+
"Site license with unlimited number of seats",
102102
],
103103
btn: "Contact us",
104104
onclick:() => handleClickContact()
@@ -309,6 +309,7 @@ export default function Groot() {
309309
<div id="price">{item.price}</div>
310310
<div id="durance">{item.durance}</div>
311311
</div>
312+
<div id="sub_durance">{item.sub_durance}</div>
312313
<ul id="point_stack" as="ul">
313314
{item.points.map((p) => (
314315
<li id="point" as="li">
@@ -353,7 +354,7 @@ export default function Groot() {
353354
<div className='row'>
354355
<div className='col col--2 '></div>
355356
<div className='col col--8 '>
356-
<h1 id='pricingHead'>(*) But wait, there is more!</h1>
357+
<h1 id='pricingHead'>But wait, there is more!</h1>
357358
<ul>
358359
<li id='text'>
359360
<b>Free Trial:</b> enjoy all the features of th PRO versions
@@ -390,7 +391,7 @@ export default function Groot() {
390391

391392
<div
392393
className={`${styles.sectionText} container ${styles.flexCol} gap-5 `}>
393-
<h3>Latest release: 1.5.0 (2023-12-16)</h3>
394+
<h3>Latest release: 1.4.0 (2023-11-29)</h3>
394395
<div className={styles.downloadGroup}>
395396
<div id='card_download' style={{ textAlign: "center" }}>
396397
<img
@@ -400,7 +401,7 @@ export default function Groot() {
400401
/>
401402
<Link
402403
onclick="fathom.trackGoal('I8XXZTK4', 0);"
403-
to='https://s3.us-west-1.amazonaws.com/download.behaviortree.dev/groot2_windows_installer/Groot2-v1.5.0-windows-installer.exe'>
404+
to='https://s3.us-west-1.amazonaws.com/download.behaviortree.dev/groot2_windows_installer/Groot2-1.4.0-windows-installer.exe'>
404405
Windows installer
405406
</Link>
406407
</div>
@@ -412,7 +413,7 @@ export default function Groot() {
412413
/>
413414
<Link
414415
onclick="fathom.trackGoal('VGT2ANC4', 0);"
415-
to='https://s3.us-west-1.amazonaws.com/download.behaviortree.dev/groot2_linux_installer/Groot2-v1.5.0-linux-installer.run'>
416+
to='https://s3.us-west-1.amazonaws.com/download.behaviortree.dev/groot2_linux_installer/Groot2-1.4.0-linux-installer.run'>
416417
Linux installer
417418
</Link>
418419
</div>
@@ -425,7 +426,7 @@ export default function Groot() {
425426
<Link
426427
// style={{marginLeft: '20px'}}
427428
onclick="fathom.trackGoal('DIQDUTJ2', 0);"
428-
to='https://s3.us-west-1.amazonaws.com/download.behaviortree.dev/groot2_linux_installer/Groot2-v1.5.0-x86_64.AppImage'>
429+
to='https://s3.us-west-1.amazonaws.com/download.behaviortree.dev/groot2_linux_installer/Groot2-v1.4.0-x86_64.AppImage'>
429430
AppImage (Linux)
430431
</Link>
431432
</div>

src/pages/groot.module.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,17 @@ h1[id="pricingHead"] {
6363
line-height: 1.5em;
6464
color: rgb(73, 73, 73);
6565
}
66+
67+
[id="sub_durance"] {
68+
margin-top: 5px;
69+
margin-left: 10px;
70+
font-size: 18px;
71+
font-weight: 600;
72+
line-height: 1.5em;
73+
text-align: center;
74+
color: rgb(73, 73, 73);
75+
}
76+
6677
[id="price"] {
6778
margin-top: 20px;
6879
font-size: 46px;

0 commit comments

Comments
 (0)