Multiple website changes, adding cloud pricing, enterprise features, fixing small issues, optimizing header animation, changing contact links, and set the theme to default to the user's preference (from browser).

This commit is contained in:
Eric Lammertsma 2026-02-03 17:02:26 -05:00
parent e172983042
commit 2a6a9c3dd5
7 changed files with 50 additions and 26 deletions

View file

@ -9,20 +9,39 @@ const demoPlans = [
yearlyPrice: "0",
period: "forever",
features: [
"Community support",
"Supports 100+ LLMs",
"Supports local Ollama or vLLM setups",
"6000+ Embedding Models",
"Supports OpenAI spec and LiteLLM",
"Supports local vLLM or Ollama setups",
"6000+ embedding models",
"50+ File extensions supported.",
"Podcasts support with local TTS providers.",
"Connects with 15+ external sources.",
"Connects with 15+ external sources, like Drive and Notion.",
"Cross-Browser Extension for dynamic webpages including authenticated content",
"Role-based access permissions",
"Collaboration and multiplayer features",
"Upcoming: Note Management",
"Role-based access control (RBAC)",
"Collaboration and team features",
],
description: "Open source version with powerful features",
buttonText: "Get Started",
buttonText: "Dive In",
href: "/docs",
isPopular: false,
},
{
name: "CLOUD",
price: "0",
yearlyPrice: "0",
period: "in beta",
features: [
"Everything in Community",
"Email support",
"Get started in seconds",
"Instant access to new features",
"Easy access from anywhere",
"Remote team management and collaboration",
],
description: "Instant access for individuals and teams",
buttonText: "Get Started",
href: "/",
isPopular: true,
},
{
@ -32,13 +51,16 @@ const demoPlans = [
period: "",
features: [
"Everything in Community",
"Priority Support",
"Advanced security features",
"Priority support",
"White-glove setup and deployment",
"Monthly managed updates and maintenance",
"On-prem or VPC deployment",
"Audit logs and compliance",
"SSO, OIDC & SAML",
"SLA guarantee",
"Uptime guarantee on VPC",
],
description: "For large organizations with specific needs",
description: "Professional, customized setup for large organizations",
buttonText: "Contact Sales",
href: "/contact",
isPopular: false,
@ -47,7 +69,7 @@ const demoPlans = [
function PricingBasic() {
return (
<Pricing plans={demoPlans} title="SurfSense Pricing" description="Choose that works for you" />
<Pricing plans={demoPlans} title="SurfSense Pricing" description="Choose what works for you" />
);
}