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

83 lines
2.3 KiB
TypeScript
Raw Normal View History

"use client";
import { Pricing } from "@/components/pricing";
const demoPlans = [
2025-09-30 21:53:10 -07:00
{
2026-02-03 22:19:10 -05:00
name: "FREE",
2025-10-02 18:10:07 -07:00
price: "0",
yearlyPrice: "0",
2026-02-03 22:19:10 -05:00
period: "",
billingText: "Includes 30 day PRO trial",
2025-09-30 21:53:10 -07:00
features: [
2026-02-03 22:19:10 -05:00
"Open source on GitHub",
"Upload and chat with 300+ pages of content",
"Connects with 8 popular sources, like Drive and Notion",
2026-02-03 22:19:10 -05:00
"Includes limited access to ChatGPT, Claude, and DeepSeek models",
"Supports 100+ more LLMs, including Gemini, Llama and many more",
"50+ File extensions supported",
"Generate podcasts in seconds",
2025-10-02 18:10:07 -07:00
"Cross-Browser Extension for dynamic webpages including authenticated content",
2026-02-03 22:19:10 -05:00
"Community support on Discord",
2025-09-30 21:53:10 -07:00
],
2026-02-03 22:19:10 -05:00
description: "Powerful features with some limitations",
buttonText: "Get Started",
href: "/",
isPopular: false,
},
{
2026-02-03 22:19:10 -05:00
name: "PRO",
price: "10",
yearlyPrice: "10",
period: "user / month",
billingText: "billed annually",
features: [
2026-02-03 22:19:10 -05:00
"Everything in Free",
"Upload and chat with 5,000+ pages of content per user",
"Connects with 15+ external sources, like Slack and Airtable",
2026-02-03 22:19:10 -05:00
"Includes extended access to ChatGPT, Claude, and DeepSeek models",
"Collaboration and commenting features",
"Shared BYOK (Bring Your Own Key)",
"Team and role management",
"Planned: Centralized billing",
2026-02-03 22:19:10 -05:00
"Priority support",
],
2026-02-05 23:09:05 -05:00
description: "The AI knowledge base for individuals and teams",
2026-02-03 22:19:10 -05:00
buttonText: "Upgrade",
href: "/contact",
2025-09-30 21:53:10 -07:00
isPopular: true,
},
{
name: "ENTERPRISE",
price: "Contact Us",
yearlyPrice: "Contact Us",
period: "",
billingText: "",
2025-09-30 21:53:10 -07:00
features: [
2026-02-03 22:19:10 -05:00
"Everything in Pro",
"Connect and chat with virtually unlimited pages of content",
"Limit models and/or providers",
"On-prem or VPC deployment",
"Planned: Audit logs and compliance",
"Planned: SSO, OIDC & SAML",
"Planned: Role-based access control (RBAC)",
2026-02-03 22:19:10 -05:00
"White-glove setup and deployment",
"Monthly managed updates and maintenance",
"SLA commitments",
"Dedicated support",
2025-09-30 21:53:10 -07:00
],
2026-02-03 22:19:10 -05:00
description: "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;