2025-09-30 20:27:34 -07:00
|
|
|
"use client";
|
|
|
|
|
|
|
|
|
|
import { Pricing } from "@/components/pricing";
|
|
|
|
|
|
|
|
|
|
const demoPlans = [
|
2025-09-30 21:53:10 -07:00
|
|
|
{
|
2025-10-02 18:10:07 -07:00
|
|
|
name: "COMMUNITY",
|
|
|
|
|
price: "0",
|
|
|
|
|
yearlyPrice: "0",
|
|
|
|
|
period: "forever",
|
2025-09-30 21:53:10 -07:00
|
|
|
features: [
|
2026-02-03 17:02:26 -05:00
|
|
|
"Community support",
|
2025-10-02 18:10:07 -07:00
|
|
|
"Supports 100+ LLMs",
|
2026-02-03 17:02:26 -05:00
|
|
|
"Supports OpenAI spec and LiteLLM",
|
|
|
|
|
"Supports local vLLM or Ollama setups",
|
|
|
|
|
"6000+ embedding models",
|
2025-10-02 18:10:07 -07:00
|
|
|
"50+ File extensions supported.",
|
|
|
|
|
"Podcasts support with local TTS providers.",
|
2026-02-03 17:02:26 -05:00
|
|
|
"Connects with 15+ external sources, like Drive and Notion.",
|
2025-10-02 18:10:07 -07:00
|
|
|
"Cross-Browser Extension for dynamic webpages including authenticated content",
|
2026-02-03 17:02:26 -05:00
|
|
|
"Role-based access control (RBAC)",
|
|
|
|
|
"Collaboration and team features",
|
2025-09-30 21:53:10 -07:00
|
|
|
],
|
2025-10-02 18:10:07 -07:00
|
|
|
description: "Open source version with powerful features",
|
2026-02-03 17:02:26 -05:00
|
|
|
buttonText: "Dive In",
|
2025-10-02 18:10:07 -07:00
|
|
|
href: "/docs",
|
2026-02-03 17:02:26 -05:00
|
|
|
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: "/",
|
2025-09-30 21:53:10 -07:00
|
|
|
isPopular: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "ENTERPRISE",
|
2025-10-02 18:10:07 -07:00
|
|
|
price: "Contact Us",
|
|
|
|
|
yearlyPrice: "Contact Us",
|
|
|
|
|
period: "",
|
2025-09-30 21:53:10 -07:00
|
|
|
features: [
|
2025-10-02 18:10:07 -07:00
|
|
|
"Everything in Community",
|
2026-02-03 17:02:26 -05:00
|
|
|
"Priority support",
|
|
|
|
|
"White-glove setup and deployment",
|
|
|
|
|
"Monthly managed updates and maintenance",
|
|
|
|
|
"On-prem or VPC deployment",
|
2025-11-28 23:43:03 -08:00
|
|
|
"Audit logs and compliance",
|
|
|
|
|
"SSO, OIDC & SAML",
|
|
|
|
|
"SLA guarantee",
|
2026-02-03 17:02:26 -05:00
|
|
|
"Uptime guarantee on VPC",
|
2025-09-30 21:53:10 -07:00
|
|
|
],
|
2026-02-03 17:02:26 -05:00
|
|
|
description: "Professional, customized setup for large organizations",
|
2025-09-30 21:53:10 -07:00
|
|
|
buttonText: "Contact Sales",
|
|
|
|
|
href: "/contact",
|
|
|
|
|
isPopular: false,
|
|
|
|
|
},
|
2025-09-30 20:27:34 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
function PricingBasic() {
|
2025-09-30 21:53:10 -07:00
|
|
|
return (
|
2026-02-03 17:02:26 -05:00
|
|
|
<Pricing plans={demoPlans} title="SurfSense Pricing" description="Choose what works for you" />
|
2025-09-30 21:53:10 -07:00
|
|
|
);
|
2025-09-30 20:27:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default PricingBasic;
|