Skip to content

Commit

Permalink
Merge pull request #2566 from FlowFuse/gstout52-patch-1
Browse files Browse the repository at this point in the history
Update pricing page for September 2024 pricing changes
  • Loading branch information
gstout52 authored Sep 13, 2024
2 parents 335b4ae + 25b9b8d commit fdec348
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/pricing/index.njk
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ sitemapPriority: 0.90
faqTitle: "Frequently Asked <span class='text-indigo-600'>Questions</span>"
faqSubtitle: "If you have any questions not addressed here, don't hesitate to contact us through our <a href='/contact-us'>Contact Us</a> page"
meta:
description: Discover the pricing options for FlowFuse, featuring Starter, Team, and Enterprise plans. Benefit from volume discounts on Team and Enterprise plans. Get started with a 14-day trial period for the Starter plan.
description: Discover the pricing options for FlowFuse, featuring Starter, Team, and Enterprise plans. Benefit from volume discounts on Team and Enterprise plans. Get started with a 14-day trial period for the Team plan.
keywords: FlowFuse pricing, Cost, Plans, Features, Cloud, Self-hosted
faq:
- question: "Does FlowFuse offer annual discounts for FlowFuse Cloud?"
answer: >
Yes, we offer a 10% discount for customers who move from monthly to annual subscriptions. Please <a href="/contact-us/">reach out</a> to request the discount.
Yes, we offer a 20% discount for customers who move from monthly to annual subscriptions. Please <a href="/contact-us/">reach out</a> to request the discount.
- question: "Is there a minimum for purchase?"
answer: >
Yes, 5 instances on Team and 10 instances on Enterprise.
Expand Down Expand Up @@ -87,7 +87,7 @@ hubspot:
</div>
</div>
<div class="mt-9 md:text-left items-left w-full mb-11 md:mt-20 md:mb-0 flex flex-row">
<h2 class="self-end">$15</h2>
<h2 class="self-end">$20</h2>
<div class="pl-1 text-sm leading-4 text-left self-end pb-1">
<note class="note ">/month</note>
</div>
Expand Down Expand Up @@ -498,12 +498,13 @@ hubspot:
const discount = ((tempSliderValue - stepSize) / stepSize) * 0.01;
let discountedPriceMonthly = (basePrice * (1 - discount)) / 12;
let regularPriceMonthly = basePrice / 12;
const [intValue, decValue] = discountedPriceMonthly.toFixed(2).split(".");
const [intValue, decValue] = regularPriceMonthly.toFixed(2).split(".");
priceIntElement.textContent = intValue;
priceDecElement.textContent = decValue;
const totalMonthlyPrice = discountedPriceMonthly * tempSliderValue;
const totalMonthlyPrice = regularPriceMonthly * tempSliderValue;
priceNoteElement.innerHTML = `/instance a month <br>Billed monthly at <span class="font-semibold">$${totalMonthlyPrice.toLocaleString('en-US', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}</span><br \\>`;
})
Expand All @@ -512,7 +513,7 @@ hubspot:
}
// Setup the sliders
setupPricingSlider("#team-monthly-slider", 300, 5, "#team-monthly-price-int", "#team-monthly-price-dec", "#team-monthly-value", "#team-monthly-price-note");
setupPricingSlider("#team-monthly-slider", 420, 5, "#team-monthly-price-int", "#team-monthly-price-dec", "#team-monthly-value", "#team-monthly-price-note");
</script>

<!-- Features info -->
Expand Down

0 comments on commit fdec348

Please sign in to comment.