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

71 lines
1.5 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: "",
2025-09-30 21:53:10 -07:00
features: [
"Self Hostable",
"Upload and chat with 300+ pages of content",
"Includes access to ChatGPT text and audio models",
"Realtime Collaborative Group Chats with teammates",
2026-02-03 22:19:10 -05:00
"Community support on Discord",
2025-09-30 21:53:10 -07:00
],
description: "",
2026-02-03 22:19:10 -05:00
buttonText: "Get Started",
href: "/login",
isPopular: false,
},
{
2026-02-03 22:19:10 -05:00
name: "PRO",
price: "0",
yearlyPrice: "0",
period: "",
billingText: "Free during beta",
features: [
2026-02-03 22:19:10 -05:00
"Everything in Free",
"Includes 6000+ pages of content",
"Access to more models and providers",
"Priority support on Discord",
],
description: "",
buttonText: "Get Started",
href: "/login",
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",
"On-prem or VPC deployment",
"Audit logs and compliance",
"SSO, OIDC & SAML",
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;