|
6 | 6 | import pressMentionsData from '$lib/fixtures/press-mentions.json'; |
7 | 7 | import { onMount } from 'svelte'; |
8 | 8 | import { analytics } from '$lib/analytics.svelte'; |
9 | | - import { getProductSchema, getFAQPageSchema } from '$lib/schemas'; |
| 9 | + import { getProductSchema, getFAQPageSchema, getStartingMonthlyPrice } from '$lib/schemas'; |
10 | 10 |
|
11 | 11 | onMount(() => { |
12 | 12 | analytics.pricingViewed({ referrer: document.referrer || undefined }); |
13 | 13 | }); |
14 | 14 |
|
15 | 15 | const productSchema = getProductSchema(); |
| 16 | + const startingPrice = getStartingMonthlyPrice(); |
16 | 17 | const pressMentions = pressMentionsData as PressMention[]; |
17 | 18 |
|
18 | 19 | const pricingFaqs = [ |
|
160 | 161 | <section class="border-t border-gray-800 py-12"> |
161 | 162 | <div class="container mx-auto max-w-5xl px-4"> |
162 | 163 | <p class="text-sm leading-relaxed text-gray-400"> |
163 | | - Every Scanopy plan uses flat-rate pricing, you don't pay per device. Pro and Business include |
164 | | - a 14-day free trial so you can evaluate Scanopy before committing. Starter adds scheduled |
165 | | - discovery, shareable views, and SVG export for $14.99/month. Pro unlocks API access, Mermaid |
166 | | - diagram export, and embeddable views across up to 3 networks - ideal for consultants or |
167 | | - multi-site setups. Business is built for MSPs and IT teams managing 15+ networks, with |
168 | | - Confluence export, audit logs, webhooks, and priority support. All paid plans include annual |
169 | | - billing at a ~20% discount. If you prefer to self-host, the <a |
170 | | - href="/community" |
171 | | - class="text-blue-400 hover:text-blue-300">Community Edition</a |
172 | | - > |
173 | | - is free for a single network and user, and the |
174 | | - <a href="/commercial" class="text-blue-400 hover:text-blue-300">Commercial Edition</a> adds commercial |
175 | | - licensing, unlimited networks and seats, and advanced features. Enterprise includes fully managed |
176 | | - deployment with SSO, whitelabeling, and live chat support. |
| 164 | + Every Scanopy plan uses flat-rate pricing — you pay per plan, not per device, so your bill |
| 165 | + stays the same whether you're documenting 10 hosts or 10,000. Cloud plans start at |
| 166 | + {startingPrice}/month (billed annually) and include a free trial, scaling from a single network |
| 167 | + up to the multi-network tiers built for consultants, MSPs, and IT teams. Prefer to self-host? The |
| 168 | + <a href="/community" class="text-blue-400 hover:text-blue-300">Community Edition</a> |
| 169 | + is free and open-source, the |
| 170 | + <a href="/commercial" class="text-blue-400 hover:text-blue-300">Commercial Edition</a> |
| 171 | + adds a commercial license, unlimited networks and seats, and advanced features, and Enterprise |
| 172 | + adds fully managed deployment with SSO, whitelabeling, and support. |
177 | 173 | </p> |
178 | 174 | </div> |
179 | 175 | </section> |
0 commit comments