SurfSense/surfsense_web/components/pricing/pricing-section.tsx

77 lines
1.9 KiB
TypeScript
Raw Normal View History

"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: [
"Community support",
2025-10-02 18:10:07 -07:00
"Supports 100+ LLMs",
"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.",
"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",
"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",
buttonText: "Dive In",
2025-10-02 18:10:07 -07:00
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: "/",
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",
"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",
"Uptime guarantee on VPC",
2025-09-30 21:53:10 -07:00
],
description: "Professional, customized setup for large organizations",
2025-09-30 21:53:10 -07:00
buttonText: "Contact Sales",
href: "/contact",
isPopular: false,
},
];
function PricingBasic() {
2025-09-30 21:53:10 -07:00
return (
<Pricing plans={demoPlans} title="SurfSense Pricing" description="Choose what works for you" />
2025-09-30 21:53:10 -07:00
);
}
export default PricingBasic;