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

55 lines
1.3 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: [
2025-10-02 18:10:07 -07:00
"Supports 100+ LLMs",
"Supports local Ollama or vLLM setups",
"6000+ Embedding Models",
"50+ File extensions supported.",
"Podcasts support with local TTS providers.",
"Connects with 15+ external sources.",
"Cross-Browser Extension for dynamic webpages including authenticated content",
2025-11-28 23:43:03 -08:00
"Role-based access permissions",
"Collaboration and multiplayer features",
2025-10-02 18:10:07 -07:00
"Upcoming: Note Management",
2025-09-30 21:53:10 -07:00
],
2025-10-02 18:10:07 -07:00
description: "Open source version with powerful features",
2025-09-30 21:53:10 -07:00
buttonText: "Get Started",
2025-10-02 18:10:07 -07:00
href: "/docs",
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",
"Advanced security features",
2025-11-28 23:43:03 -08:00
"Audit logs and compliance",
"SSO, OIDC & SAML",
"SLA guarantee",
2025-09-30 21:53:10 -07:00
],
description: "For large organizations with specific needs",
buttonText: "Contact Sales",
href: "/contact",
isPopular: false,
},
];
function PricingBasic() {
2025-09-30 21:53:10 -07:00
return (
2025-10-02 18:10:07 -07:00
<Pricing plans={demoPlans} title="SurfSense Pricing" description="Choose that works for you" />
2025-09-30 21:53:10 -07:00
);
}
export default PricingBasic;